Uses of Class
infomat.vectorspace.IObject

Packages that use IObject
infomat.vectorspace   
infomat.view   
infomat.view.grouping.settings   
infomat.view.info   
infomat.view.picture   
 

Uses of IObject in infomat.vectorspace
 

Subclasses of IObject in infomat.vectorspace
 class IObjectGroup
          A IObjectGroup is a set of IObject:s.
 class IObjectGrouping
          A IObjectGrouping is a set of IObjectGroup:s.
 class IObjectSet
          A IObjectSet is a complete set of IObject:s.
 

Fields in infomat.vectorspace with type parameters of type IObject
 java.util.HashMap<IObject,java.lang.Integer> IObjectGroup.objectOrderIndexMap
           
 

Methods in infomat.vectorspace that return IObject
 IObject IMatrixCell.getColumnIObject()
           
 IObject IObjectGroup.getIObjectAt(int i)
          Returns the IObject at the i:the place according to the ordering.
 IObject IMatrixCell.getRowIObject()
           
 

Methods in infomat.vectorspace that return types with arguments of type IObject
 java.util.Vector<IObject> IObjectGrouping.getGroupingVector()
          Returns a vector of all the IObjects contained in this IObjectGrouping in the order suggested by the ordering of the IObjectGroup:s and their internal order.
 java.util.HashMap<IObject,java.lang.Float> IObjectGroup.getObjectOrderValueMap()
          Returns a HashMap with the objects mapped to the values that are the basis for the ordering.
 java.util.Vector<IObject> IObjectGroup.getOrdered()
          Returns a vector of the ordered IObjects.
 java.util.HashMap<IObject,java.lang.Float> IObjectGroup.getRepresentation(IMatrix matrix)
          Returns a centroid in the form of a HashMap, mapping IObject to a Float value.
 java.util.HashMap<IObject,java.lang.Float> IObject.getRepresentation(IMatrix myIMatrix)
          Returns the representation in the form of a HashMap, mapping IObject to a Float value.
 java.util.Vector<IObject> IObjectGrouping.remove(int from, int to)
          Removes and returns the IObjects in the range given, the range within the vector "ordered".
 

Methods in infomat.vectorspace with parameters of type IObject
 void IObjectSet.add(IObject co)
          Adds a new IObject.
 void IObjectGroup.add(IObject co)
          Adds a new IObject at the next place.
 void IObjectGroup.add(IObject co, float orderValue)
          Adds a new IObject in the place the value implicates.
 boolean IObjectGroup.contains(IObject co)
          Returns true when the IObjectGroup contains the IObject.
 IMatrixCell IMatrix.getCell(IObject row, IObject col)
          Returns the IMatrixCell for the IObject "row" in the "row" IObjectSet and the IObject "col" in the "column" IObjectSet
 java.util.HashSet IMatrix.getColumnIMatrixCellsForRowObject(IObject rowObject)
           
 int IObjectGroup.getIObjectOrderIndex(IObject co)
          Returns the order number of the IObject.
 java.util.HashSet IMatrix.getRowIMatrixCellsForColumnObject(IObject colObject)
           
 IObjectGroup IObjectGrouping.inWhichIObjectGroup(IObject co)
          Returns the IObjectGroup in this IObjectGrouping that contains this IObject.
 int IObjectGrouping.inWhichIObjectGroupOrdered(IObject co)
          Returns the number of the IObjectGroup in this IObjectGrouping that contains this IObject.
 int IObject.stringCompareTo(IObject co)
           
 

Method parameters in infomat.vectorspace with type arguments of type IObject
static float Sorter.compareObjectToCentroid(java.util.HashMap<IObject,java.lang.Float> representation, java.util.HashMap<IObject,java.lang.Float> centroid)
           
static float Sorter.compareObjectToCentroid(java.util.HashMap<IObject,java.lang.Float> representation, java.util.HashMap<IObject,java.lang.Float> centroid)
           
 

Constructors in infomat.vectorspace with parameters of type IObject
IMatrixCell(IObject rowObject, IObject columnObject, float weight)
           
IMatrixCell(IObject rowObject, IObject columnObject, int localCount, float weight)
           
 

Uses of IObject in infomat.view
 

Methods in infomat.view with parameters of type IObject
 void InfomatView.dragged(IObject colObject, IObject rowObject, boolean overviewPicture)
           
 void InfomatView.setDragStart(IObject colObject, IObject rowObject)
           
 void InfomatView.zoom(IObject colCenterObject, IObject rowCenterObject, int notches)
           
 

Uses of IObject in infomat.view.grouping.settings
 

Methods in infomat.view.grouping.settings with parameters of type IObject
 java.awt.Color GroupingColoring.getColorForObject(IObject co)
           
 

Uses of IObject in infomat.view.info
 

Methods in infomat.view.info with parameters of type IObject
 void DimensionInfoPanel.setCurrentInfo(IObject io)
           
 void PixelInfoPanel.setCurrentInfo(IObject rowObject, IObject colObject)
           
 void PixelInfoFrame.setCurrentInfo(IObject rowObject, IObject colObject)
           
 void PixelInfoFrame.setHoldPixel(IObject rowObject, IObject colObject)
           
 

Uses of IObject in infomat.view.picture
 

Methods in infomat.view.picture with parameters of type IObject
 SparsePixel SparsePicture.getPixelForObjects(IObject rowObject, IObject colObject)