Uses of Class
sidnet.core.misc.LocationContext

Packages that use LocationContext
shaohua_project.sweep.driver   
sidnet.core.gui   
sidnet.core.interfaces   
sidnet.core.misc   
sidnet.models.senseable.mob   
sidnet.models.senseable.phenomena   
sidnet.stack.driver   
sidnet.stack.users.alternating_tree.driver   
sidnet.stack.users.Bezier.driver   
sidnet.stack.users.demo_multi_tree.driver   
sidnet.stack.users.EECS510.driver   
sidnet.stack.users.geographical_tree_aggregation.driver   
sidnet.stack.users.k_shortest_path.driver   
sidnet.stack.users.marco_project.image_charges.driver   
sidnet.stack.users.marco_project.node_centric.driver   
sidnet.stack.users.marco_project.packet_centric.driver   
sidnet.stack.users.sample_p2p.driver   
sidnet.stack.users.SenSys08.driver   
sidnet.stack.users.topological_tree_aggregation.driver   
sidnet.stack.users.triggers_project.driver   
sidnet.stack.users.waspsample.driver   
 

Uses of LocationContext in shaohua_project.sweep.driver
 

Methods in shaohua_project.sweep.driver with parameters of type LocationContext
static Node Driver_Sweep.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, StatsCollector stats, TopologyGUI topologyGUI)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.core.gui
 

Methods in sidnet.core.gui that return LocationContext
 LocationContext NodeGUIimpl.getLocationContext()
           
 LocationContext PanelContext.getLocationContext()
           
 

Uses of LocationContext in sidnet.core.interfaces
 

Methods in sidnet.core.interfaces that return LocationContext
 LocationContext NodeAPI.getLocationContext()
          Returns the LocationContext in which the getLocation2D returns the measurements
 LocationContext NodeGUI.getLocationContext()
          Returns the LocationContext corresponding to the panel the sensor is drawed (screen/panel dimensions)
 

Methods in sidnet.core.interfaces with parameters of type LocationContext
 void GPS.configure(LocationContext locationContext)
           
 double DataExchangeInterface.readDataAt(Location2D physicalLocation, LocationContext physicalLocationContext)
           
 double DataExchangeReadableOnly.readDataAt(Location2D physicalLocation, LocationContext physicalLocationContext)
           
 void DataExchangeInterface.writeDataAt(double data, Location2D physicalLocation, LocationContext physicalLocationContext)
           
 void DataExchangeWritableOnly.writeDataAt(double data, Location2D physicalLocation, LocationContext physicalLocationContext)
           
 

Uses of LocationContext in sidnet.core.misc
 

Methods in sidnet.core.misc that return LocationContext
 LocationContext Node.getLocationContext()
           
 LocationContext Region.getLocationContext()
           
 

Methods in sidnet.core.misc with parameters of type LocationContext
 Location2D LocationContext.adapt(Location2D thisLocation, LocationContext thisLocationContext)
          Converts a Location2D information represented relative to one locationContext to a new Location2D represented relative to "thisLocationContext" without having to convert it to NCS first
 void GPSimpl.configure(LocationContext locationContext)
           
static Location2D Location2D.convertTo(Location2D loc, LocationContext sourceLocationContext, LocationContext targetLocationContext)
          Converts the indicated location according to the target locationContext
 Location2D Location2D.convertTo(LocationContext sourceLocationContext, LocationContext targetLocationContext)
          Converts the current location according to the target locationContext
 Location2D NCS_Location2D.fromNCS(LocationContext locationContext)
          Converts the current NCS-represented locations to a real location given the LocationContext (contains the dimensions in which the location will be converted to)
static Region Region.getConvexHullRegion(int regionID, LocationContext locationContext, Location2D[] P)
           
 Region Region.getCopy(LocationContext newLocationContext)
           
 double NodesList.maxCoverage(Location2D referenceLocation, LocationContext referenceLocationContext)
           
 double DataGrid.readDataAt(Location2D location, LocationContext locationContext)
           
 double TransientDataGrid.readDataAt(Location2D location, LocationContext locationContext)
           
 NCS_Location2D Location2D.toNCS(LocationContext locationContext)
          Converts the current represented locations to NCS (Normalized Coordinate System)
 

Constructors in sidnet.core.misc with parameters of type LocationContext
Location2D(Location2D fromLocation, LocationContext fromLocationContext, LocationContext toLocationContext)
           
LocationContext(LocationContext locationContext)
          Copy Constructor.
Node(int id, EnergyManagement energyManagement, PanelContext hostingPanelContext, LocationContext fieldContext, ColorProfile colorCode, SimManager simControl)
          Creates a new instance of Node
Region(int regionID, int x, int y, int width, int height, LocationContext locationContext)
           
Region(int regionID, LocationContext locationContext)
          Creates a new instance of Region
 

Uses of LocationContext in sidnet.models.senseable.mob
 

Methods in sidnet.models.senseable.mob with parameters of type LocationContext
 double MovingObjectsField.readDataAt(Location2D location, LocationContext locationContext)
           
 

Uses of LocationContext in sidnet.models.senseable.phenomena
 

Methods in sidnet.models.senseable.phenomena with parameters of type LocationContext
 double DummyPhenomenon.readDataAt(Location2D location, LocationContext locationContext)
           
 double GenericDynamicPhenomenon.readDataAt(Location2D location, LocationContext locationContext)
           
 

Uses of LocationContext in sidnet.stack.driver
 

Methods in sidnet.stack.driver with parameters of type LocationContext
static Node Driver_Test802_15_4.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, Battery battery, StatsCollector stats, int nodesCount, java.lang.String junitTest)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.alternating_tree.driver
 

Methods in sidnet.stack.users.alternating_tree.driver with parameters of type LocationContext
static Node AlternatingTreeWithBezier.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, Battery battery, StatsCollector stats)
          Configures each node representation and network stack
static Node AlternatingTreeWithKShort.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, Battery battery, StatsCollector stats)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.Bezier.driver
 

Methods in sidnet.stack.users.Bezier.driver with parameters of type LocationContext
static Node Driver_Bezier.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, Battery battery, StatsCollector stats)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.demo_multi_tree.driver
 

Methods in sidnet.stack.users.demo_multi_tree.driver with parameters of type LocationContext
static Node Driver_DemoMultiTree.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, Battery battery, SimManager simControl)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.EECS510.driver
 

Methods in sidnet.stack.users.EECS510.driver with parameters of type LocationContext
static Node Driver_Assignment2.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, StatsCollector stats)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.geographical_tree_aggregation.driver
 

Methods in sidnet.stack.users.geographical_tree_aggregation.driver with parameters of type LocationContext
static Node Driver_GeographicalTreeAggregation.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, Battery battery, SimManager simControl, StatsCollector stats)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.k_shortest_path.driver
 

Methods in sidnet.stack.users.k_shortest_path.driver with parameters of type LocationContext
static Node Driver_kShortestPath.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, Battery battery, StatsCollector stats)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.marco_project.image_charges.driver
 

Methods in sidnet.stack.users.marco_project.image_charges.driver with parameters of type LocationContext
static Node Driver_ElectrostaticRouting.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, StatsCollector stats, TopologyGUI topologyGUI)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.marco_project.node_centric.driver
 

Methods in sidnet.stack.users.marco_project.node_centric.driver with parameters of type LocationContext
static Node Driver_ElectrostaticRouting.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, StatsCollector stats, TopologyGUI topologyGUI)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.marco_project.packet_centric.driver
 

Methods in sidnet.stack.users.marco_project.packet_centric.driver with parameters of type LocationContext
static Node Driver_ElectrostaticRouting.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, StatsCollector stats, TopologyGUI topologyGUI)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.sample_p2p.driver
 

Methods in sidnet.stack.users.sample_p2p.driver with parameters of type LocationContext
static Node Driver_SampleP2P.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, StatsCollector stats, TopologyGUI topologyGUI)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.SenSys08.driver
 

Methods in sidnet.stack.users.SenSys08.driver with parameters of type LocationContext
static Node Driver_SenSys08_GeographicalTreeAggregation.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, Battery battery, SimManager simControl, StatsCollector stats)
          Configures each node representation and network stack
static Node Driver_SenSys08Demo_Deployment.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, Battery battery, StatsCollector stats)
          Configures each node representation and network stack
static Node Driver_SenSys08_P2P.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, Battery battery, StatsCollector stats)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.topological_tree_aggregation.driver
 

Methods in sidnet.stack.users.topological_tree_aggregation.driver with parameters of type LocationContext
static Node Driver_TopologicalTreeAggregation.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, Battery battery, SimManager simControl, StatsCollector stats)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.triggers_project.driver
 

Methods in sidnet.stack.users.triggers_project.driver with parameters of type LocationContext
static Node Driver_Triggers.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, Battery battery, SimManager simControl, StatsCollector stats)
          Configures each node representation and network stack
 

Uses of LocationContext in sidnet.stack.users.waspsample.driver
 

Methods in sidnet.stack.users.waspsample.driver with parameters of type LocationContext
static Node Driver_Wasp.createNode(int id, Field field, Placement placement, Mapper protMap, RadioInfo.RadioInfoShared radioInfoShared, PacketLoss plIn, PacketLoss plOut, PanelContext hostPanelContext, LocationContext fieldContext, SimManager simControl, StatsCollector stats, TopologyGUI topologyGUI)