Sweet Home 3D 3.4

Uses of Class
com.eteks.sweethome3d.model.RecorderException

Packages that use RecorderException
com.eteks.sweethome3d.applet Instantiates the required classes to run Sweet Home 3D as an applet
com.eteks.sweethome3d.io Implements how to read and write homes and user preferences created in model classes of Sweet Home 3D. 
com.eteks.sweethome3d.model Describes model classes of Sweet Home 3D. 
com.eteks.sweethome3d.plugin Describes the super classes required to create Sweet Home 3D plug-ins. 
com.eteks.sweethome3d.swing Implements views created by Sweet Home 3D controllers with Swing components. 
com.eteks.sweethome3d.viewcontroller Describes controller classes and view interfaces of Sweet Home 3D. 
 

Uses of RecorderException in com.eteks.sweethome3d.applet
 

Methods in com.eteks.sweethome3d.applet that throw RecorderException
 void AppletUserPreferences.addFurnitureLibrary(java.lang.String name)
          Throws an exception because applet user preferences can't manage additional furniture libraries.
 void AppletUserPreferences.addLanguageLibrary(java.lang.String languageLibraryName)
          Throws an exception because applet user preferences can't manage language libraries.
 void AppletUserPreferences.addTexturesLibrary(java.lang.String name)
          Throws an exception because applet user preferences can't manage additional textures libraries.
 boolean HomeAppletRecorder.exists(java.lang.String name)
          Returns true if the home name exists.
 boolean AppletUserPreferences.furnitureLibraryExists(java.lang.String name)
          Throws an exception because applet user preferences can't manage furniture libraries.
 java.lang.String[] HomeAppletRecorder.getAvailableHomes()
          Returns the available homes on server.
 boolean AppletUserPreferences.languageLibraryExists(java.lang.String languageLibraryName)
          Throws an exception because applet user preferences can't manage additional language libraries.
 Home HomeAppletRecorder.readHome(java.lang.String name)
          Returns a home instance read from its file name.
 boolean AppletUserPreferences.texturesLibraryExists(java.lang.String name)
          Throws an exception because applet user preferences can't manage textures libraries.
 void AppletUserPreferences.write()
          Writes user preferences.
 void HomeAppletRecorder.writeHome(Home home, java.lang.String name)
          Posts home data to the server URL returned by getHomeSaveURL.
 

Uses of RecorderException in com.eteks.sweethome3d.io
 

Methods in com.eteks.sweethome3d.io that throw RecorderException
 void DefaultUserPreferences.addFurnitureLibrary(java.lang.String name)
          Throws an exception because default user preferences can't manage additional furniture libraries.
 void FileUserPreferences.addFurnitureLibrary(java.lang.String furnitureLibraryName)
          Adds the file furnitureLibraryName to the first furniture libraries folder to make the furniture library available to catalog.
 void DefaultUserPreferences.addLanguageLibrary(java.lang.String name)
          Throws an exception because default user preferences can't manage additional language libraries.
 void FileUserPreferences.addLanguageLibrary(java.lang.String languageLibraryName)
          Adds languageLibraryName to the first language libraries folder to make the language library it contains available to supported languages.
 void DefaultUserPreferences.addTexturesLibrary(java.lang.String name)
          Throws an exception because default user preferences can't manage additional textures libraries.
 void FileUserPreferences.addTexturesLibrary(java.lang.String texturesLibraryName)
          Adds the file texturesLibraryName to the first textures libraries folder to make the textures library available to catalog.
 boolean HomeFileRecorder.exists(java.lang.String name)
          Returns true if the file name exists.
 boolean DefaultUserPreferences.furnitureLibraryExists(java.lang.String name)
          Throws an exception because default user preferences can't manage furniture libraries.
 boolean FileUserPreferences.furnitureLibraryExists(java.lang.String name)
          Returns true if the given furniture library file exists in the first furniture libraries folder.
 boolean DefaultUserPreferences.languageLibraryExists(java.lang.String name)
          Throws an exception because default user preferences can't manage language libraries.
 boolean FileUserPreferences.languageLibraryExists(java.lang.String name)
          Returns true if the given language library exists in the first language libraries folder.
 Home HomeFileRecorder.readHome(java.lang.String name)
          Returns a home instance read from its file name.
 boolean DefaultUserPreferences.texturesLibraryExists(java.lang.String name)
          Throws an exception because default user preferences can't manage textures libraries.
 boolean FileUserPreferences.texturesLibraryExists(java.lang.String name)
          Returns true if the given textures library file exists in the first textures libraries folder.
 void DefaultUserPreferences.write()
          Throws an exception because default user preferences can't be written with this class.
 void FileUserPreferences.write()
          Writes user preferences in current user preferences in system.
 void HomeFileRecorder.writeHome(Home home, java.lang.String name)
          Writes home data.
 

Constructors in com.eteks.sweethome3d.io that throw RecorderException
AutoRecoveryManager(HomeApplication application)
          Creates a manager able to automatically recover application homes.
 

Uses of RecorderException in com.eteks.sweethome3d.model
 

Subclasses of RecorderException in com.eteks.sweethome3d.model
 class InterruptedRecorderException
          Exception thrown when an a thread is interrupted during an access to data in IO layer.
 

Methods in com.eteks.sweethome3d.model that throw RecorderException
abstract  void UserPreferences.addFurnitureLibrary(java.lang.String furnitureLibraryName)
          Adds furnitureLibraryName to furniture catalog to make the furniture library it contains available.
abstract  void UserPreferences.addLanguageLibrary(java.lang.String languageLibraryName)
          Adds languageLibraryName to the first language libraries folder to make the language library it contains available to supported languages.
abstract  void UserPreferences.addTexturesLibrary(java.lang.String texturesLibraryName)
          Adds texturesLibraryName to textures catalog to make the textures library it contains available.
 boolean HomeRecorder.exists(java.lang.String name)
          Returns true if the home with a given name exists.
abstract  boolean UserPreferences.furnitureLibraryExists(java.lang.String furnitureLibraryName)
          Returns true if the given furniture library exists.
abstract  boolean UserPreferences.languageLibraryExists(java.lang.String languageLibraryName)
          Returns true if the given language library exists.
 Home HomeRecorder.readHome(java.lang.String name)
          Returns a home instance read from its name.
abstract  boolean UserPreferences.texturesLibraryExists(java.lang.String texturesLibraryName)
          Returns true if the given textures library exists.
abstract  void UserPreferences.write()
          Writes user preferences.
 void HomeRecorder.writeHome(Home home, java.lang.String name)
          Writes home data.
 

Uses of RecorderException in com.eteks.sweethome3d.plugin
 

Methods in com.eteks.sweethome3d.plugin that throw RecorderException
 void PluginManager.addPlugin(java.lang.String pluginName)
          Adds the file pluginName to the first plug-ins folders if it exists.
 boolean PluginManager.pluginExists(java.lang.String pluginName)
          Returns true if a plug-in with the given file name already exists in the first plug-ins folder.
 

Uses of RecorderException in com.eteks.sweethome3d.swing
 

Methods in com.eteks.sweethome3d.swing that throw RecorderException
 void HomePane.exportToOBJ(java.lang.String objFile)
          Exports the objects of the 3D view to the given OBJ file.
 void HomePane.exportToSVG(java.lang.String svgFile)
          Exports the plan objects to a given SVG file.
 Content FileContentManager.getContent(java.lang.String contentName)
          Returns a URL content object that references the given file path.
 void HomePane.printToPDF(java.lang.String pdfFile)
          Prints a home to a given PDF file.
 

Uses of RecorderException in com.eteks.sweethome3d.viewcontroller
 

Methods in com.eteks.sweethome3d.viewcontroller that throw RecorderException
 void HomeView.exportToOBJ(java.lang.String objFile)
          Exports the 3D home objects to a given OBJ file.
 void HomeView.exportToSVG(java.lang.String svgName)
          Exports the plan objects to a given SVG file.
 Content ContentManager.getContent(java.lang.String contentName)
          Returns a content object that references a given content name.
 void HomeView.printToPDF(java.lang.String pdfFile)
          Prints a home to a given PDF file.
 


Sweet Home 3D 3.4

? Copyrights 2006-2011 eTeks - All rights reserved
Distributed under GNU General Public License