Uses of Class
java.util.Vector

Packages that use Vector
com.intel.bluetooth   
java.util Utilities 
javax.microedition.location Location API 
lejos.addon.gps The lejos.addon.gps package provides GPS parsing. 
lejos.nxt.comm NXT communication classes 
net.sf.antcontrib.cpptasks   
net.sf.antcontrib.cpptasks.arm   
net.sf.antcontrib.cpptasks.borland   
net.sf.antcontrib.cpptasks.compaq   
net.sf.antcontrib.cpptasks.compiler   
net.sf.antcontrib.cpptasks.devstudio   
net.sf.antcontrib.cpptasks.gcc   
net.sf.antcontrib.cpptasks.gcc.cross   
net.sf.antcontrib.cpptasks.gcc.cross.sparc_sun_solaris2   
net.sf.antcontrib.cpptasks.hp   
net.sf.antcontrib.cpptasks.ibm   
net.sf.antcontrib.cpptasks.intel   
net.sf.antcontrib.cpptasks.os390   
net.sf.antcontrib.cpptasks.os400   
net.sf.antcontrib.cpptasks.sun   
net.sf.antcontrib.cpptasks.ti   
 

Uses of Vector in com.intel.bluetooth
 

Methods in com.intel.bluetooth that return Vector
static Vector Utils.clone(Enumeration en)
           
static Vector BlueCoveImpl.getLocalDevicesID()
          List the local adapters that can be initialized using configuration property "bluecove.deviceID".
 

Methods in com.intel.bluetooth with parameters of type Vector
static void Utils.isLegalAPICall(Vector fqcnSet)
           
 

Uses of Vector in java.util
 

Subclasses of Vector in java.util
 class Queue
          A FIFO Queue of objects.
 class Stack
          A LIFO stack of objects.
 

Uses of Vector in javax.microedition.location
 

Fields in javax.microedition.location declared as Vector
protected static Vector LocationProvider.listeners
          This is where we store the proximity listeners.
 

Uses of Vector in lejos.addon.gps
 

Fields in lejos.addon.gps declared as Vector
protected static Vector SimpleGPS.listeners
           
 

Uses of Vector in lejos.nxt.comm
 

Methods in lejos.nxt.comm that return Vector
static Vector Bluetooth.getKnownDevicesList()
          The internal Chip has a list of already paired Devices.
static Vector Bluetooth.inquire(int maxDevices, int timeout, byte[] cod)
          Start a Bluetooth inquiry process
 

Uses of Vector in net.sf.antcontrib.cpptasks
 

Methods in net.sf.antcontrib.cpptasks with parameters of type Vector
static void CUtil.addAll(Vector dest, Object[] src)
          Adds the elements of the array to the given vector
protected  LinkerConfiguration CCTask.collectExplicitObjectFiles(Vector objectFiles, Vector sysObjectFiles)
           
protected  TargetInfo CCTask.getLinkTarget(LinkerConfiguration linkerConfig, Vector objectFiles, Vector sysObjectFiles, Hashtable compileTargets)
           
static boolean CUtil.sameList(Vector v, Object[] a)
          Compares the contents of an array and a Vector for equality.
static boolean CUtil.sameSet(Object[] a, Vector b)
          Compares the contents of an array and a Vector for set equality.
static String[] CUtil.toArray(Vector src)
          Converts a vector to a string array.
 

Constructors in net.sf.antcontrib.cpptasks with parameters of type Vector
DependencyInfo(String includePathIdentifier, String source, long sourceLastModified, Vector includes, Vector sysIncludes)
           
ObjectFileCollector(Linker linker, Vector files)
           
TargetMatcher(CCTask task, File outputDir, ProcessorConfiguration[] processors, LinkerConfiguration linker, Vector objectFiles, Hashtable targets)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.arm
 

Methods in net.sf.antcontrib.cpptasks.arm with parameters of type Vector
protected  void ADSLibrarian.addBase(long base, Vector args)
           
protected  void ADSLinker.addBase(long base, Vector args)
           
protected  void ADSLibrarian.addEntry(String entry, Vector args)
           
protected  void ADSLinker.addEntry(String entry, Vector args)
           
protected  void ADSLibrarian.addFixed(Boolean fixed, Vector args)
           
protected  void ADSLinker.addFixed(Boolean fixed, Vector args)
           
protected  void ADSLibrarian.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void ADSLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void ADSCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
          Adds command switches for generic configuration options
protected  void ADSLibrarian.addIncremental(boolean incremental, Vector args)
           
protected  void ADSLinker.addIncremental(boolean incremental, Vector args)
           
protected  void ADSLibrarian.addMap(boolean map, Vector args)
           
protected  void ADSLinker.addMap(boolean map, Vector args)
           
protected  void ADSLibrarian.addStack(int stack, Vector args)
           
protected  void ADSLinker.addStack(int stack, Vector args)
           
protected  void ADSCCompiler.addWarningSwitch(Vector args, int warnings)
          Adds flags that customize the warnings reported Compiler does not appear to have warning levels but ability to turn off specific errors by explicit switches, could fabricate levels by prioritizing errors.
 

Uses of Vector in net.sf.antcontrib.cpptasks.borland
 

Methods in net.sf.antcontrib.cpptasks.borland with parameters of type Vector
protected  void BorlandLibrarian.addBase(long base, Vector args)
           
protected  void BorlandLinker.addBase(long base, Vector args)
           
protected  void BorlandLibrarian.addEntry(String entry, Vector args)
           
protected  void BorlandLinker.addEntry(String entry, Vector args)
           
protected  void BorlandLibrarian.addFixed(Boolean fixed, Vector args)
           
protected  void BorlandLinker.addFixed(Boolean fixed, Vector args)
           
protected  void BorlandLibrarian.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void BorlandLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void BorlandCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void BorlandResourceCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void BorlandLibrarian.addIncremental(boolean incremental, Vector args)
           
protected  void BorlandLinker.addIncremental(boolean incremental, Vector args)
           
protected  void BorlandLibrarian.addMap(boolean map, Vector args)
           
protected  void BorlandLinker.addMap(boolean map, Vector args)
           
protected  void BorlandLibrarian.addStack(int stack, Vector args)
           
protected  void BorlandLinker.addStack(int stack, Vector args)
           
protected  void BorlandCCompiler.addWarningSwitch(Vector args, int level)
           
static void BorlandProcessor.addWarningSwitch(Vector args, int level)
           
protected  void BorlandResourceCompiler.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.compaq
 

Methods in net.sf.antcontrib.cpptasks.compaq with parameters of type Vector
protected  void CompaqVisualFortranLibrarian.addBase(long base, Vector args)
           
protected  void CompaqVisualFortranLibrarian.addEntry(String entry, Vector args)
           
protected  void CompaqVisualFortranLibrarian.addFixed(Boolean fixed, Vector args)
           
protected  void CompaqVisualFortranLibrarian.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void CompaqVisualFortranLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void CompaqVisualFortranCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void CompaqVisualFortranLibrarian.addIncremental(boolean incremental, Vector args)
           
protected  void CompaqVisualFortranLibrarian.addMap(boolean map, Vector args)
           
protected  void CompaqVisualFortranLibrarian.addStack(int stack, Vector args)
           
 void CompaqVisualFortranCompiler.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.compiler
 

Methods in net.sf.antcontrib.cpptasks.compiler with parameters of type Vector
protected abstract  void CommandLineLinker.addBase(long base, Vector args)
           
protected abstract  void CommandLineLinker.addEntry(String entry, Vector args)
           
protected abstract  void CommandLineLinker.addFixed(Boolean fixed, Vector args)
           
protected abstract  void CommandLineLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected abstract  void CommandLineCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void CommandLineCompiler.addIncludes(String baseDirPath, File[] includeDirs, Vector args, Vector relativeArgs, StringBuffer includePathId)
          Adds command-line arguments for include directories.
protected abstract  void CommandLineLinker.addIncremental(boolean incremental, Vector args)
           
protected  String[] CommandLineLinker.addLibrarySets(CCTask task, LibrarySet[] libsets, Vector preargs, Vector midargs, Vector endargs)
           
protected abstract  void CommandLineLinker.addMap(boolean map, Vector args)
           
protected abstract  void CommandLineLinker.addStack(int stack, Vector args)
           
protected abstract  void CommandLineCompiler.addWarningSwitch(Vector args, int warnings)
           
protected  void CommandLineCompiler.buildDefineArguments(CompilerDef[] defs, Vector args)
           
protected  boolean AbstractCompiler.resolveInclude(String includeName, File[] includePath, Vector onThisPath)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.devstudio
 

Methods in net.sf.antcontrib.cpptasks.devstudio with parameters of type Vector
protected  void DevStudioCompatibleLibrarian.addBase(long base, Vector args)
           
protected  void DevStudioCompatibleLinker.addBase(long base, Vector args)
           
protected  void DevStudioCompatibleLibrarian.addEntry(String entry, Vector args)
           
protected  void DevStudioCompatibleLinker.addEntry(String entry, Vector args)
           
protected  void DevStudioCompatibleLibrarian.addFixed(Boolean fixed, Vector args)
           
protected  void DevStudioCompatibleLinker.addFixed(Boolean fixed, Vector args)
           
protected  void DevStudioCompatibleLibrarian.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void DevStudioCompatibleLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void DevStudioCompatibleCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void DevStudioMIDLCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void DevStudioResourceCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void DevStudioCompatibleLibrarian.addIncremental(boolean incremental, Vector args)
           
protected  void DevStudioCompatibleLinker.addIncremental(boolean incremental, Vector args)
           
protected  void DevStudioCompatibleLibrarian.addMap(boolean map, Vector args)
           
protected  void DevStudioCompatibleLinker.addMap(boolean map, Vector args)
           
protected  void DevStudioCompatibleLibrarian.addStack(int stack, Vector args)
           
protected  void DevStudioCompatibleLinker.addStack(int stack, Vector args)
           
protected  void DevStudioCompatibleCCompiler.addWarningSwitch(Vector args, int level)
           
protected  void DevStudioMIDLCompiler.addWarningSwitch(Vector args, int level)
           
static void DevStudioProcessor.addWarningSwitch(Vector args, int level)
           
protected  void DevStudioResourceCompiler.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.gcc
 

Methods in net.sf.antcontrib.cpptasks.gcc with parameters of type Vector
 void AbstractArLibrarian.addBase(long base, Vector args)
           
 void AbstractLdLinker.addBase(long base, Vector args)
           
protected  void AbstractArLibrarian.addEntry(String entry, Vector args)
           
protected  void AbstractLdLinker.addEntry(String entry, Vector args)
           
 void AbstractArLibrarian.addFixed(Boolean fixed, Vector args)
           
 void AbstractLdLinker.addFixed(Boolean fixed, Vector args)
           
 void AbstractArLibrarian.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void AbstractLdLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void GccLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void GppLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
 void GccCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
 void GccCompatibleCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
 void GccCompatibleCCompiler.addIncludePath(String path, Vector cmd)
          Adds an include path to the command.
 void AbstractArLibrarian.addIncremental(boolean incremental, Vector args)
           
 void AbstractLdLinker.addIncremental(boolean incremental, Vector args)
           
 String[] AbstractLdLinker.addLibrarySets(CCTask task, LibrarySet[] libsets, Vector preargs, Vector midargs, Vector endargs)
           
 String[] GppLinker.addLibrarySets(CCTask task, LibrarySet[] libsets, Vector preargs, Vector midargs, Vector endargs)
           
 void AbstractArLibrarian.addMap(boolean map, Vector args)
           
 void AbstractLdLinker.addMap(boolean map, Vector args)
           
 void AbstractArLibrarian.addStack(int stack, Vector args)
           
 void AbstractLdLinker.addStack(int stack, Vector args)
           
 void GccCompatibleCCompiler.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.gcc.cross
 

Methods in net.sf.antcontrib.cpptasks.gcc.cross with parameters of type Vector
protected  void GccLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void GppLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
 void GccCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
 String[] GppLinker.addLibrarySets(CCTask task, LibrarySet[] libsets, Vector preargs, Vector midargs, Vector endargs)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.gcc.cross.sparc_sun_solaris2
 

Methods in net.sf.antcontrib.cpptasks.gcc.cross.sparc_sun_solaris2 with parameters of type Vector
protected  void GccLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void GppLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
 void GccCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
 String[] GppLinker.addLibrarySets(CCTask task, LibrarySet[] libsets, Vector preargs, Vector midargs, Vector endargs)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.hp
 

Methods in net.sf.antcontrib.cpptasks.hp with parameters of type Vector
 void aCCLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
 void aCCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
 void aCCLinker.addIncremental(boolean incremental, Vector args)
           
 void aCCCompiler.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.ibm
 

Methods in net.sf.antcontrib.cpptasks.ibm with parameters of type Vector
 void VisualAgeLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
 void VisualAgeCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
 void VisualAgeCCompiler.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.intel
 

Methods in net.sf.antcontrib.cpptasks.intel with parameters of type Vector
static void IntelProcessor.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.os390
 

Methods in net.sf.antcontrib.cpptasks.os390 with parameters of type Vector
protected  void OS390Linker.addBase(long base, Vector args)
           
protected  void OS390Linker.addEntry(String entry, Vector args)
           
protected  void OS390Linker.addFixed(Boolean fixed, Vector args)
           
protected  void OS390Linker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void OS390CCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void OS390Linker.addIncremental(boolean incremental, Vector args)
           
protected  String[] OS390Linker.addLibrarySets(CCTask task, LibrarySet[] libsets, Vector preargs, Vector midargs, Vector endargs)
           
protected  void OS390Linker.addMap(boolean map, Vector args)
           
protected  void OS390Linker.addStack(int stack, Vector args)
           
protected  void OS390CCompiler.addWarningSwitch(Vector args, int level)
           
static void OS390Processor.addWarningSwitch(Vector args, int level)
           
protected  void OS390CCompiler.buildDefineArguments(CompilerDef[] defs, Vector args)
          The buildDefineArguments implementation CommandLineCCompiler is not good for us because os390 defines are give by -D definex instead of /Ddefinex, 2 args not 1! since we implement this ourslefs, we do not have to implement the getDefineSwitch() and the getUndefineSwitch().
 

Uses of Vector in net.sf.antcontrib.cpptasks.os400
 

Methods in net.sf.antcontrib.cpptasks.os400 with parameters of type Vector
protected  void IccLinker.addBase(long base, Vector args)
           
protected  void IccLinker.addEntry(String entry, Vector args)
           
protected  void IccLinker.addFixed(Boolean fixed, Vector args)
           
protected  void IccLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void IccCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void IccLinker.addIncremental(boolean incremental, Vector args)
           
protected  String[] IccLinker.addLibrarySets(CCTask task, LibrarySet[] libsets, Vector preargs, Vector midargs, Vector endargs)
           
protected  void IccLinker.addMap(boolean map, Vector args)
           
protected  void IccLinker.addStack(int stack, Vector args)
           
protected  void IccCompiler.addWarningSwitch(Vector args, int level)
           
static void IccProcessor.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.sun
 

Methods in net.sf.antcontrib.cpptasks.sun with parameters of type Vector
protected  void C89Linker.addBase(long base, Vector args)
           
protected  void C89Linker.addEntry(String entry, Vector args)
           
protected  void C89Linker.addFixed(Boolean fixed, Vector args)
           
protected  void C89Linker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
 void ForteCCLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void C89CCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
 void ForteCCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void C89Linker.addIncremental(boolean incremental, Vector args)
           
 void ForteCCLinker.addIncremental(boolean incremental, Vector args)
           
 String[] C89Linker.addLibrarySets(CCTask task, LibrarySet[] libsets, Vector preargs, Vector midargs, Vector endargs)
           
protected  void C89Linker.addMap(boolean map, Vector args)
           
protected  void C89Linker.addStack(int stack, Vector args)
           
protected  void C89CCompiler.addWarningSwitch(Vector args, int level)
           
static void C89Processor.addWarningSwitch(Vector args, int level)
           
 void ForteCCCompiler.addWarningSwitch(Vector args, int level)
           
 

Uses of Vector in net.sf.antcontrib.cpptasks.ti
 

Methods in net.sf.antcontrib.cpptasks.ti with parameters of type Vector
protected  void ClxxLibrarian.addBase(long base, Vector args)
           
protected  void ClxxLinker.addBase(long base, Vector args)
           
protected  void ClxxLibrarian.addEntry(String entry, Vector args)
           
protected  void ClxxLinker.addEntry(String entry, Vector args)
           
protected  void ClxxLibrarian.addFixed(Boolean fixed, Vector args)
           
protected  void ClxxLinker.addFixed(Boolean fixed, Vector args)
           
protected  void ClxxLibrarian.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void ClxxLinker.addImpliedArgs(boolean debug, LinkType linkType, Vector args)
           
protected  void ClxxCCompiler.addImpliedArgs(Vector args, boolean debug, boolean multithreaded, boolean exceptions, LinkType linkType, Boolean rtti, OptimizationEnum optimization)
           
protected  void ClxxLibrarian.addIncremental(boolean incremental, Vector args)
           
protected  void ClxxLinker.addIncremental(boolean incremental, Vector args)
           
protected  void ClxxLibrarian.addMap(boolean map, Vector args)
           
protected  void ClxxLinker.addMap(boolean map, Vector args)
           
protected  void ClxxLibrarian.addStack(int stack, Vector args)
           
protected  void ClxxLinker.addStack(int stack, Vector args)
           
protected  void ClxxCCompiler.addWarningSwitch(Vector args, int warnings)