Uses of Class
com.tensegrity.palowebviewer.modules.engine.client.exceptions.InvalidObjectPathException

Packages that use InvalidObjectPathException
com.tensegrity.palowebviewer.modules.engine.client   
com.tensegrity.palowebviewer.modules.engine.server   
com.tensegrity.palowebviewer.server   
com.tensegrity.palowebviewer.server.paloaccessor   
 

Uses of InvalidObjectPathException in com.tensegrity.palowebviewer.modules.engine.client
 

Methods in com.tensegrity.palowebviewer.modules.engine.client that throw InvalidObjectPathException
 boolean IEngineService.checkExistance(XPath contextPath, java.lang.String elementName)
          More specified version of IEngineService.checkExistance(XPath) : it checks existance by name in some context.
 XElement[] IEngineService.getParentsOf(XPath contextPath, java.lang.String elementName)
          This method returns parents elements in element hierarchy for particular element.
 XObject IEngineService.loadChild(XPath path, java.lang.String childId, int type)
          This methods loads single child specified by path to parend, id and type
 XObject IEngineService.loadChildByName(XPath path, java.lang.String name, int type)
           
 XObject[] IEngineService.loadChildren(XPath path, int type)
          This method loads all children (XObjects) of type of object specified by path.
 XDefaultView IEngineService.loadDefaultView(XPath path)
          This method constructs "default view", i.e.
 XResult[] IEngineService.query(XQueryPath[] paths)
          This method returns data for cube, specified by query.
 java.lang.String IEngineService.saveView(XViewPath viewPath)
          This method updates view if the one already exists and adds view otherwise.
 void IEngineService.updateData(XPath cubePath, IXPoint point, IResultElement value)
          This method sets value of some cell of cube pointed by point
 

Uses of InvalidObjectPathException in com.tensegrity.palowebviewer.modules.engine.server
 

Methods in com.tensegrity.palowebviewer.modules.engine.server that throw InvalidObjectPathException
 boolean EngineService.checkExistance(XPath contextPath, java.lang.String elementName)
           
 boolean EngineLogic.checkExistance(XPath contextPath, java.lang.String elementId, IEngineContext ctx)
           
 XElement[] EngineService.getParentsOf(XPath contextPath, java.lang.String elementName)
           
 XElement[] EngineLogic.getParentsOf(XPath contextPath, java.lang.String elementId, IEngineContext ctx)
           
 XObject EngineService.loadChild(XPath path, java.lang.String childId, int type)
           
 XObject EngineLogic.loadChild(XPath path, java.lang.String childId, int type, IEngineContext context)
           
 XObject EngineService.loadChildByName(XPath path, java.lang.String name, int type)
           
 XObject EngineLogic.loadChildByName(XPath path, java.lang.String name, int type, IEngineContext context)
           
 XObject[] EngineService.loadChildren(XPath path, int type)
           
 XObject[] EngineLogic.loadChildren(XPath path, int type, IEngineContext ctx)
           
 XDefaultView EngineService.loadDefaultView(XPath path)
           
 XDefaultView EngineLogic.loadDefaultView(XPath path, IEngineContext context)
           
 XResult[] EngineService.query(XQueryPath[] queries)
           
 XResult[] EngineLogic.query(XQueryPath[] queries, IEngineContext context)
           
 java.lang.String EngineService.saveView(XViewPath viewPath)
           
 java.lang.String EngineLogic.saveView(XViewPath viewPath, IConnectionPool pool)
           
protected  void DefaultViewConstuctorTask.task()
           
protected  void LoadFavoriteViewsTask.task()
           
protected  void GetParentsOfTask.task()
           
protected  void ElementExistanceCheckerTask.task()
           
 void EngineService.updateData(XPath cube, IXPoint point, IResultElement value)
           
 void EngineLogic.updateData(XPath cube, IXPoint point, IResultElement value, IEngineContext context)
           
 

Uses of InvalidObjectPathException in com.tensegrity.palowebviewer.server
 

Methods in com.tensegrity.palowebviewer.server that throw InvalidObjectPathException
 void ViewSaver.addDimension(org.palo.api.Axis axis, XPath dimensionPath)
           
 void ViewSaver.addDimensions(org.palo.api.Axis axis, XPath axisPath)
           
protected  org.palo.api.Dimension ViewSaver.getDimension(XPath path)
           
protected  org.palo.api.Element ViewSaver.getElement(XPath path)
           
protected  org.palo.api.Subset ViewSaver.getSubset(XPath path)
           
protected  XDimension ViewSaver.getXDimension(XPath path)
           
protected  XElement ViewSaver.getXElement(XPath path)
           
protected  XSubset ViewSaver.getXSubset(XPath path)
           
protected  void ViewSaver.initFields()
           
 void ViewSaver.save()
           
 

Uses of InvalidObjectPathException in com.tensegrity.palowebviewer.server.paloaccessor
 

Methods in com.tensegrity.palowebviewer.server.paloaccessor that throw InvalidObjectPathException
 boolean PaloAccessor.checkExistance(XPath ctx, java.lang.String id, org.palo.api.Connection connection)
           
 XResult XResultFetcher.fetch()
           
 XResult PaloAccessor.fetch(XQueryPath query, org.palo.api.Connection connection)
           
 XObject PaloAccessor.getLastObject(XPath path, org.palo.api.Connection connection)
          constructs object for given path.
 XObject XObjectPathCache.getObject(XPath path, org.palo.api.Connection connection)
           
static org.palo.api.ElementNode[] PaloHelper.getParentPath(org.palo.api.ElementNode[] rootNodes, java.lang.String elementId)
           
 XElement[] PaloAccessor.getParentsOf(XPath ctx, java.lang.String elementId, org.palo.api.Connection connection)
           
protected  void CellUpdater.initFields()
           
 XObject[] PaloAccessor.loadChildren(XPath path, int type, org.palo.api.Connection connection)
           
 java.lang.String PaloAccessor.save(XViewPath viewPath, org.palo.api.Connection connection)
           
 void CellUpdater.update()
           
 void PaloAccessor.update(XPath cubePath, IXPoint point, IResultElement value, org.palo.api.Connection connection, java.util.Locale locale)
           
 

Constructors in com.tensegrity.palowebviewer.server.paloaccessor that throw InvalidObjectPathException
XResultFetcher(PaloAccessor accessor, XQueryPath query, org.palo.api.Connection connection)