Mobile Tools for Java
Release 1.0

Uses of Interface
org.eclipse.mtj.core.symbol.ISymbolSet

Packages that use ISymbolSet
org.eclipse.mtj.core.project.runtime This package provides an API for managing MTJ project runtime configurations. 
org.eclipse.mtj.core.project.runtime.event This package provides all events related classes and interfaces associated to the MTJRuntime API. 
org.eclipse.mtj.core.symbol This package provides an API for managing all symbols that are used during the preprocessing operations. 
 

Uses of ISymbolSet in org.eclipse.mtj.core.project.runtime
 

Methods in org.eclipse.mtj.core.project.runtime that return ISymbolSet
 ISymbolSet MTJRuntime.getRuntimeSymbolSet()
          All preprocessing related code should NOT use this method to get ISymbolSet, instead, getSymbolSetForPreprocessing() should be used for preprocessing purpose.
 ISymbolSet MTJRuntime.getRuntimeSymbolSetForPreprocessing()
          All preprocessing related function should use this method to get SymbolSet.
 

Methods in org.eclipse.mtj.core.project.runtime that return types with arguments of type ISymbolSet
 List<ISymbolSet> MTJRuntime.getWorkspaceScopeSymbolSets()
          Returns a list of symbolsets that are on the workspace level.
 

Methods in org.eclipse.mtj.core.project.runtime with parameters of type ISymbolSet
 void MTJRuntime.setSymbolSet(ISymbolSet symbolSet)
           
 

Method parameters in org.eclipse.mtj.core.project.runtime with type arguments of type ISymbolSet
 void MTJRuntime.setWorkspaceScopeSymbolSets(List<ISymbolSet> symbolSets)
           
 

Uses of ISymbolSet in org.eclipse.mtj.core.project.runtime.event
 

Methods in org.eclipse.mtj.core.project.runtime.event that return types with arguments of type ISymbolSet
 List<ISymbolSet> MTJRuntimeWorkspaceSymbolSetsChangeEvent.getNewSymbolDefinitionSets()
           
 List<ISymbolSet> MTJRuntimeWorkspaceSymbolSetsChangeEvent.getOldSymbolDefinitionSets()
           
 

Method parameters in org.eclipse.mtj.core.project.runtime.event with type arguments of type ISymbolSet
 void MTJRuntimeWorkspaceSymbolSetsChangeEvent.setNewSymbolDefinitionSets(List<ISymbolSet> newSymbolDefinitionSets)
           
 void MTJRuntimeWorkspaceSymbolSetsChangeEvent.setOldSymbolDefinitionSets(List<ISymbolSet> oldSymbolDefinitionSets)
           
 

Constructor parameters in org.eclipse.mtj.core.project.runtime.event with type arguments of type ISymbolSet
MTJRuntimeWorkspaceSymbolSetsChangeEvent(Object source, List<ISymbolSet> oldSets, List<ISymbolSet> newSets)
           
MTJRuntimeWorkspaceSymbolSetsChangeEvent(Object source, List<ISymbolSet> oldSets, List<ISymbolSet> newSets)
           
 

Uses of ISymbolSet in org.eclipse.mtj.core.symbol
 

Methods in org.eclipse.mtj.core.symbol that return ISymbolSet
 ISymbolSet ISymbolSetFactory.createSymbolSet(String name)
          Create a symbol set with a predefined name
 ISymbolSet ISymbolSetFactory.createSymbolSetFromDevice(IDevice device)
          Create SymbolSet from device.
 ISymbolSet[] ISymbolSetRegistry.getAllSymbolSets()
          Return all of the definitions registered.
 ISymbolSet ISymbolSetRegistry.getSymbolSet(String name)
          Return the SymbolDefinitions instance registered with the specified name or null if the object cannot be found.
 

Methods in org.eclipse.mtj.core.symbol that return types with arguments of type ISymbolSet
 List<ISymbolSet> ISymbolSetFactory.createSymbolSetFromDataBase(String type, URI input, IProgressMonitor monitor)
          Creates a list of symbol sets based on a device data base. the device database is specified via an input URI and a type.
 

Methods in org.eclipse.mtj.core.symbol with parameters of type ISymbolSet
 void ISymbolSetRegistry.addSymbolSet(ISymbolSet definitions)
          Add the specified SymbolDefinitions object to the registry of definitions.
 boolean ISymbolSet.equals(ISymbolSet definitions)
          Return a boolean indicating whether the specified SymbolDefinitions object is equal to this object.
 

Method parameters in org.eclipse.mtj.core.symbol with type arguments of type ISymbolSet
 void ISymbolSetRegistry.addSymbolSet(List<ISymbolSet> ss)
          Add an array of symbol sets to the registry
 


Mobile Tools for Java
Release 1.0