Mobile Tools for Java
Release 1.0

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

Packages that use ISymbol
org.eclipse.mtj.core.symbol This package provides an API for managing all symbols that are used during the preprocessing operations. 
 

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

Methods in org.eclipse.mtj.core.symbol that return ISymbol
 ISymbol ISymbolSet.add(String name)
          Define a new symbol in the symbolset with the given name with the a default value (true).
 ISymbol ISymbolSet.add(String name, String value)
          Define a new symbol in the symbolset with the given name and value.
 ISymbol ISymbolSet.add(String identifier, String value, int type)
          Define a new symbol in the symbolset with the given name, value and type.
 ISymbol ISymbolSetFactory.createSymbol(String name, String value)
          Creates a new symbol based on the given name and value.
 

Methods in org.eclipse.mtj.core.symbol that return types with arguments of type ISymbol
 Collection<ISymbol> ISymbolSet.getSymbols()
          Returns a collection view of the values contained in this SymbolSet.
 

Methods in org.eclipse.mtj.core.symbol with parameters of type ISymbol
 void ISymbolSet.add(ISymbol s)
          Add one specific symbol to this symbolset.
 

Method parameters in org.eclipse.mtj.core.symbol with type arguments of type ISymbol
 void ISymbolSet.add(Collection<ISymbol> symbols)
          Add a collection of symbols to this symbolset.
 void ISymbolSet.remove(Collection<ISymbol> c)
          Remove a collection of symbols from the SymbolSet.
 


Mobile Tools for Java
Release 1.0