Uses of Class
com.tensegrity.generic.persistence.ReadException

Packages that use ReadException
com.tensegrity.composite.geometry Provides interfaces and classes for defining and dealing with geometries and styles for composites. 
com.tensegrity.composite.style Styles are used to define the visual appearance of an element.  
com.tensegrity.generic.persistence Holds classes and interfaces useful to make instances of objects of the Tensegrity-API persistent.  
com.tensegrity.generic.util.prefs Contains interfaces and classes that is helpful for dealing with persistent application settings. 
com.tensegrity.graph.element Element functions.  
com.tensegrity.graph.persistence GraphPersistence package.  
com.tensegrity.graph.rule The rule package contains the code for rules that are used throughout the graph packages.  
com.tensegrity.graph.view.geometry   
com.tensegrity.graph.view.style   
com.tensegrity.gui.document Contains the interfaces for document types and the framework which maintains such documents.  
com.tensegrity.gui.document.persistence   
com.tensegrity.gui.graphdocument This package contains the GraphDocument interface, a Factory for creating such documents as well as a definition for a panel which may hold such documents.  
com.tensegrity.gui.graphdocument.persistence   
com.tensegrity.gui.swing.document This package contains all of the current document implementations for use in a swing-based environment.  
com.tensegrity.gui.swt.document   
com.tensegrity.skeleton   
com.tensegrity.skeleton.commands The command package contains all the predefined commands of the skeleton, like Save, Print, Quit, Zoom, etc. 
com.tensegrity.skeleton.container.swing The swing implementations of all currently available ToolContainer types. 
com.tensegrity.skeleton.container.swt   
 

Uses of ReadException in com.tensegrity.composite.geometry
 

Methods in com.tensegrity.composite.geometry that throw ReadException
static void GeometryService.loadGeometriesFromResource(java.lang.String filename, java.lang.Class resourceclass)
          Loads the geometry definitions from the given file.
static void GeometryService.loadGeometriesFromResource(java.lang.String filename, java.lang.Class resourceclass, boolean overwriteExisting)
          Loads the geometry definitions from the given file.
 

Uses of ReadException in com.tensegrity.composite.style
 

Methods in com.tensegrity.composite.style that throw ReadException
static void StyleService.loadStylesFromResource(java.lang.String filename, java.lang.Class resourceclass)
          Loads the style-definition from file given by filename relatively located to Class resourceclass.
static void StyleService.loadStylesFromResource(java.lang.String filename, java.lang.Class resourceclass, boolean overwriteExisting)
          Loads the style-definition from file given by filename relatively located to Class resourceclass.
 

Uses of ReadException in com.tensegrity.generic.persistence
 

Methods in com.tensegrity.generic.persistence that throw ReadException
 AttributeList XMLStreamReader.read()
           
 AttributeList Reader.read()
          This method reads the information available in the data source and returns them in form of an AttributeList.
static AttributeList XMLIOUtilities.readXML(java.io.InputStream in)
          This method reads an AttributeList from an given InputStream.
static AttributeList XMLIOUtilities.readXMLFile(java.io.File file)
          Convenience method that builds an InputStream with the given File-parameter and then calls readXML().
static AttributeList XMLIOUtilities.readXMLFile(java.lang.String filename, java.lang.Class resourceClass)
          This method uses the XMLReader to create an AttributeList from the XML-file specified by the filename parameter.
 AttributeList XMLReader.read()
          Deprecated.  
 

Uses of ReadException in com.tensegrity.generic.util.prefs
 

Methods in com.tensegrity.generic.util.prefs that throw ReadException
static Preferences PreferenceFactory.createPreferences(java.lang.String defaultFileName, java.lang.Class resourceClass, java.lang.String writeOutName)
          Constructor specifying a default file name, a resource class used to load this file and a write out name for the file holding the preferences.
 

Uses of ReadException in com.tensegrity.graph.element
 

Methods in com.tensegrity.graph.element that throw ReadException
static void ElementService.loadElementsFromResource(java.lang.String filename, java.lang.Class resourceclass)
          This method will load the elements from the given xml file, using the specified classloader.
static void ElementService.loadElementsFromResource(java.lang.String filename, java.lang.Class resourceclass, java.util.List nameList)
          This method will load the elements from the given xml file, using the specified classloader and will store the names of the resulting elements in the parameter set instance.
static boolean ElementService.checkLocationsTag(java.lang.String elementURL)
          Method checkLocationsTag checks whether the given element file contains the location tag and returns true.
static java.lang.String ElementService.getElementsName(java.lang.String elementURL)
          Reads the ElementConstants.ELEMENTSNAME attribute from the given element file and returns it as String.
static ElementService.Locations ElementService.getLocations(java.lang.String elementURL)
          Method getLocations reads all optional locations of the given element file and returns an instance of class Locations or null if no such attributes are found.
 

Uses of ReadException in com.tensegrity.graph.persistence
 

Methods in com.tensegrity.graph.persistence that throw ReadException
static VisualGraphView GraphPersistence.readVisualGraphView(java.io.InputStream in)
          Reads a VisualGraphView from the InputStream given by in and returns it.
static VisualGraphView GraphPersistence.readVisualGraphView(java.io.InputStream in, ViewBuilderFilter listener)
          Reads a VisualGraphView from the given InputStream and uses the ViewBuilderFilter.
static VisualGraphView GraphPersistence.readVisualGraphView(java.io.InputStream in, ViewBuilderFilter listener, Attribute outAttributeList)
          Reads a VisualGraphView from the given InputStream and uses the ViewBuilderFilter.
static VisualGraphView GraphPersistence.readVisualGraphView(java.io.File file)
          Reads a VisualGraphView from the File given by file and returns it.
static VisualGraphView GraphPersistence.readVisualGraphView(java.io.File file, ViewBuilderFilter listener)
          Reads a VisualGraphView from the File given by file and returns it.
 

Uses of ReadException in com.tensegrity.graph.rule
 

Methods in com.tensegrity.graph.rule that throw ReadException
static RuleRegistry RuleRegistry.addRulesFromResource(RuleRegistry ruleregistry, java.lang.String filename, java.lang.Class resourceclass)
          Method that adds rules from a given resource to a RuleRegistry.
static RuleRegistry RuleRegistry.loadRulesFromResource(java.lang.String filename, java.lang.Class resourceclass)
          Method that loads the RuleRegistry for a given resource.
 

Uses of ReadException in com.tensegrity.graph.view.geometry
 

Methods in com.tensegrity.graph.view.geometry that throw ReadException
static void GraphGeometryService.loadGeometriesFromResource(java.lang.String filename, java.lang.Class resourceclass)
          Loads the given geometry into the GeometryPool
static void GraphGeometryService.loadGeometriesFromResource(java.lang.String filename, java.lang.Class resourceClass, boolean overwriteExisting)
          Loads the geometry definitions from the file given through filename.
 

Uses of ReadException in com.tensegrity.graph.view.style
 

Methods in com.tensegrity.graph.view.style that throw ReadException
static void GraphStyleService.loadStylesFromResource(java.lang.String filename, java.lang.Class resourceclass)
          Loads the given styles into the StylePool by using the StyleService.loadStylesFromResource(String, Class) method.
 

Uses of ReadException in com.tensegrity.gui.document
 

Constructors in com.tensegrity.gui.document that throw ReadException
DocumentSettingsProvider(Document gDoc, java.util.Map mapPref2Doc, java.lang.String preferenceFileName, java.lang.Class refClass)
          Constructor
 

Uses of ReadException in com.tensegrity.gui.document.persistence
 

Methods in com.tensegrity.gui.document.persistence that throw ReadException
 boolean DocumentReader.readDocument(Document doc, java.io.InputStream input)
          Reads data from the input stream to build the contents of the given (empty) document.
 

Uses of ReadException in com.tensegrity.gui.graphdocument
 

Methods in com.tensegrity.gui.graphdocument that throw ReadException
static void LayoutIOUtilities.loadSettings(GraphPanel graphpanel, java.lang.String filename)
          Loads the layout settings from the given filename and applies them to th given GraphPanel.
 

Constructors in com.tensegrity.gui.graphdocument that throw ReadException
GraphDocumentSettingsProvider(Document gDoc, java.util.Map mapPref2Doc, java.lang.String preferenceFileName, java.lang.Class refClass)
          Constructor
 

Uses of ReadException in com.tensegrity.gui.graphdocument.persistence
 

Methods in com.tensegrity.gui.graphdocument.persistence that throw ReadException
 boolean GraphDocumentReader.readDocument(Document doc, java.io.InputStream input)
           
protected  void GraphDocumentReader.loadData(GraphDocument graphdocument, java.io.InputStream input)
          Method loadData reads a VisualGraphView from a given file by using the appropriate Builder instances.
 

Uses of ReadException in com.tensegrity.gui.swing.document
 

Methods in com.tensegrity.gui.swing.document that throw ReadException
 boolean SwingGraphDocumentReader.readDocument(Document doc, java.io.InputStream input)
           
 

Uses of ReadException in com.tensegrity.gui.swt.document
 

Methods in com.tensegrity.gui.swt.document that throw ReadException
 boolean SwtGraphDocumentReader.readDocument(Document doc, java.io.InputStream input)
           
 

Uses of ReadException in com.tensegrity.skeleton
 

Methods in com.tensegrity.skeleton that throw ReadException
static void Skeleton.setLocale(java.lang.String prefFileName, java.lang.String defaultPrefFileName, java.lang.Class loadClass)
          This method reads a preference file and reads the language related entry (if there is one).
 

Uses of ReadException in com.tensegrity.skeleton.commands
 

Methods in com.tensegrity.skeleton.commands that throw ReadException
protected  void OpenElementsCommand.updateRepository(java.io.File file, boolean createNewCat)
           
protected  void OpenElementsCommand.checkConflicts(ElementDefinitionWrapper edw)
           
protected  void OpenElementsCommand.loadDefinitions(ElementDefinitionWrapper edw, java.io.File file, ElementService.Locations locs)
           
protected  void OpenLayoutsCommand.loadDefinitions(java.io.File file)
           
protected  void OpenLayoutsCommand.checkConflicts(ElementDefinitionWrapper edw)
           
protected  void OpenLayoutsCommand.updateRepository(java.io.File file, boolean createNewCat)
           
protected  void OpenLayoutsCommand.updateRepository(AttributeList repository, java.lang.String resID, java.lang.String name, boolean createNewCat)
           
 

Uses of ReadException in com.tensegrity.skeleton.container.swing
 

Methods in com.tensegrity.skeleton.container.swing that throw ReadException
static void SwingRepositoryUtil.buildRepository(ApplicationFrame appFrame, DragContext dragContext, SlidePanel slideRepository, java.lang.String filepath, java.lang.Class refClass, ActionRepositoryItem.ClickActionProvider clickActionProvider)
          Builds a repository into a given SlidePanel.
static void SwingRepositoryUtil.buildRepository(ApplicationFrame appFrame, DragContext dragContext, SlidePanel slideRepository, java.io.File file, ActionRepositoryItem.ClickActionProvider clickActionProvider)
          Builds a repository into a given SlidePanel.
 

Uses of ReadException in com.tensegrity.skeleton.container.swt
 

Methods in com.tensegrity.skeleton.container.swt that throw ReadException
 void SwtRepositoryUtil.buildRepository(org.eclipse.swt.widgets.Composite slideRepository, java.io.File file, ActionSwtRepositoryItem.ClickActionProvider clickActionProvider)
           Builds a repository using the data contained in the elements definition file file.
 void SwtRepositoryUtil.buildSlideRepository(org.eclipse.swt.widgets.Composite parent, java.lang.String path, java.lang.Class refClass, ActionSwtRepositoryItem.ClickActionProvider clickActionProvider)
           Builds a repository using the data contained in the elements definition file which can be found at path.
 



Copyright © 2005 Tensegrity Software GmbH. All Rights Reserved. Date of creation: 09.06.2006.