|
Sweet Home 3D 4.0 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
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(String location)
Throws an exception because applet user preferences can't manage additional furniture libraries. |
void |
AppletUserPreferences.addLanguageLibrary(String location)
Throws an exception because applet user preferences can't manage language libraries. |
void |
AppletUserPreferences.addTexturesLibrary(String location)
Throws an exception because applet user preferences can't manage additional textures libraries. |
boolean |
HomeAppletRecorder.exists(String name)
Returns true if the home name exists. |
boolean |
AppletUserPreferences.furnitureLibraryExists(String location)
Returns true if the furniture library at the given location exists. |
String[] |
HomeAppletRecorder.getAvailableHomes()
Returns the available homes on server. |
boolean |
AppletUserPreferences.languageLibraryExists(String location)
Throws an exception because applet user preferences can't manage additional language libraries. |
Home |
HomeAppletRecorder.readHome(String name)
Returns a home instance read from its file name . |
boolean |
AppletUserPreferences.texturesLibraryExists(String location)
Returns true if the textures library at the given location exists. |
void |
AppletUserPreferences.write()
Writes user preferences. |
void |
HomeAppletRecorder.writeHome(Home home,
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 |
FileUserPreferences.addFurnitureLibrary(String furnitureLibraryPath)
Adds the file furnitureLibraryPath to the first furniture libraries folder
to make the furniture library available to catalog. |
void |
DefaultUserPreferences.addFurnitureLibrary(String name)
Throws an exception because default user preferences can't manage additional furniture libraries. |
void |
FileUserPreferences.addLanguageLibrary(String languageLibraryPath)
Adds languageLibraryPath to the first language libraries folder
to make the language library it contains available to supported languages. |
void |
DefaultUserPreferences.addLanguageLibrary(String name)
Throws an exception because default user preferences can't manage additional language libraries. |
void |
FileUserPreferences.addTexturesLibrary(String texturesLibraryPath)
Adds the file texturesLibraryPath to the first textures libraries folder
to make the textures library available to catalog. |
void |
DefaultUserPreferences.addTexturesLibrary(String name)
Throws an exception because default user preferences can't manage additional textures libraries. |
void |
FileUserPreferences.deleteLibraries(List<Library> libraries)
Deletes the given file libraries and updates user preferences. |
boolean |
HomeFileRecorder.exists(String name)
Returns true if the file name exists. |
boolean |
FileUserPreferences.furnitureLibraryExists(String location)
Returns true if the furniture library at the given location exists
in the first furniture libraries folder. |
boolean |
DefaultUserPreferences.furnitureLibraryExists(String name)
Throws an exception because default user preferences can't manage additional furniture libraries. |
boolean |
FileUserPreferences.languageLibraryExists(String location)
Returns true if the language library at the given location exists
in the first language libraries folder. |
boolean |
DefaultUserPreferences.languageLibraryExists(String name)
Throws an exception because default user preferences can't manage language libraries. |
Home |
HomeFileRecorder.readHome(String name)
Returns a home instance read from its file name . |
boolean |
FileUserPreferences.texturesLibraryExists(String location)
Returns true if the textures library at the given location exists
in the first textures libraries folder. |
boolean |
DefaultUserPreferences.texturesLibraryExists(String name)
Throws an exception because default user preferences can't manage textures libraries. |
void |
FileUserPreferences.write()
Writes user preferences in current user preferences in system. |
void |
DefaultUserPreferences.write()
Throws an exception because default user preferences can't be written with this class. |
void |
HomeFileRecorder.writeHome(Home home,
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(String furnitureLibraryLocation)
Adds furnitureLibraryName to furniture catalog
to make the furniture it contains available. |
abstract void |
UserPreferences.addLanguageLibrary(String languageLibraryLocation)
Adds the language library to make the languages it contains available to supported languages. |
abstract void |
UserPreferences.addTexturesLibrary(String texturesLibraryLocation)
Adds the textures library at the given location to textures catalog to make the textures it contains available. |
boolean |
HomeRecorder.exists(String name)
Returns true if the home with a given name
exists. |
abstract boolean |
UserPreferences.furnitureLibraryExists(String furnitureLibraryLocation)
Returns true if the furniture library at the given location exists. |
abstract boolean |
UserPreferences.languageLibraryExists(String languageLibraryLocation)
Returns true if the language library at the given location exists. |
Home |
HomeRecorder.readHome(String name)
Returns a home instance read from its name . |
abstract boolean |
UserPreferences.texturesLibraryExists(String texturesLibraryLocation)
Returns true if the textures library at the given location exists. |
abstract void |
UserPreferences.write()
Writes user preferences. |
void |
HomeRecorder.writeHome(Home home,
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(String pluginPath)
Adds the file at the given location to the first plug-ins folders if it exists. |
void |
PluginManager.deletePlugins(List<Library> libraries)
Deletes the given plug-in libraries from managed plug-ins. |
boolean |
PluginManager.pluginExists(String pluginLocation)
Returns true if a plug-in in 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.exportToCSV(String csvFile)
Exports furniture list to a given SVG file. |
void |
HomePane.exportToOBJ(String objFile)
Exports the objects of the 3D view to the given OBJ file. |
void |
HomePane.exportToSVG(String svgFile)
Exports the plan objects to a given SVG file. |
Content |
FileContentManager.getContent(String contentPath)
Returns a URL content object that references
the given file path. |
void |
HomePane.printToPDF(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.exportToCSV(String csvName)
Exports furniture list to a given SVG file. |
void |
HomeView.exportToOBJ(String objFile)
Exports the 3D home objects to a given OBJ file. |
void |
HomeView.exportToSVG(String svgName)
Exports the plan objects to a given SVG file. |
Content |
ContentManager.getContent(String contentLocation)
Returns a content object that references a given content location. |
void |
HomeView.printToPDF(String pdfFile)
Prints a home to a given PDF file. |
|
Sweet Home 3D 4.0 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
![]() |
© Copyrights 2006-2013 eTeks - All rights reserved
Distributed under GNU General Public License |