A C D E F G I K L M N O P R S T U V Z

A

AbstractDecoder - Class in org.diyefi.openlogviewer.decoder
Typical constructor for this class would look like this
public CSVTypeLog(File f) {
this.setLogFile(f);
this.setDecodedLog(new GenericLog());
this.setT(new Thread(this, "CSV Type Log Loading"));
this.getT().setPriority(Thread.MAX_PRIORITY);
this.getT().start();
}
AbstractDecoder() - Constructor for class org.diyefi.openlogviewer.decoder.AbstractDecoder
 
accept(File) - Method in class org.diyefi.openlogviewer.filefilters.CSVFileFilter
 
accept(File) - Method in class org.diyefi.openlogviewer.filefilters.FreeEMSBinFileFilter
 
accept(File) - Method in class org.diyefi.openlogviewer.filefilters.FreeEMSFileFilter
 
accept(File) - Method in class org.diyefi.openlogviewer.filefilters.FreeEMSLAFileFilter
 
accept(File) - Method in class org.diyefi.openlogviewer.filefilters.LogFileFilter
 
accept(File) - Method in class org.diyefi.openlogviewer.filefilters.MSTypeFileFilter
 
actionPerformed(ActionEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
add(double) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
override add( t) of ArrayList to find min and max values before adding to the List
addGraph(String) - Method in class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
 
addProperty(SingleProperty) - Method in class org.diyefi.openlogviewer.propertypanel.PropertiesPane
 
addPropertyAndSave(SingleProperty) - Method in class org.diyefi.openlogviewer.propertypanel.PropertiesPane
 
addPropertyChangeListener(String, PropertyChangeListener) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
addPropertyChangeListener(String, PropertyChangeListener) - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
Add a property change listener to the generic log, REQUIRED!! GenericLog.LOG_STATUS is the name of the status property
addValue(String, double) - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
Add a piece of data to the ArrayList associated with the key
ancestorMoved(HierarchyEvent) - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
 
ancestorResized(HierarchyEvent) - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
 

C

clearOut() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
clearOut() - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
 
compareTo(GenericDataElement) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
compareTo(SingleProperty) - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
componentHidden(ComponentEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
componentMoved(ComponentEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
componentResized(ComponentEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
componentShown(ComponentEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
CSVFileFilter - Class in org.diyefi.openlogviewer.filefilters
 
CSVFileFilter() - Constructor for class org.diyefi.openlogviewer.filefilters.CSVFileFilter
 
CSVTypeLog - Class in org.diyefi.openlogviewer.decoder
 
CSVTypeLog(File) - Constructor for class org.diyefi.openlogviewer.decoder.CSVTypeLog
This constructor is called when a string path is provided

D

decodeLog() - Method in class org.diyefi.openlogviewer.decoder.CSVTypeLog
Decodes a CSV type of text file, the first ten lines are parsed individually to detect the delimiter type accepted types of delimiters are TAB, comma, ; , : and \ this decoder does not yet support markers, it will skip them

E

eject() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
elapsedTimeKey - Static variable in class org.diyefi.openlogviewer.genericlog.GenericLog
 
enterFullScreen() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
EntireGraphingPanel - Class in org.diyefi.openlogviewer.graphing
 
EntireGraphingPanel() - Constructor for class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
equals(MarkedColor) - Method in class org.diyefi.openlogviewer.coloring.MarkedColor
 
equals(Color) - Method in class org.diyefi.openlogviewer.coloring.MarkedColor
 
equals(String) - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
exitFullScreen() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 

F

fastForward() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
Increases the speed of the graph by 1 ms until 0, at which speed cannot be advanced any further and will essentially update as fast as possible.
fling() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
FreeEMSBin - Class in org.diyefi.openlogviewer.decoder
This function takes a binary log file, plucks FreeEMS packets out of it, filters for standard packets and parses them into fields with appropriate scaling.
FreeEMSBin(String) - Constructor for class org.diyefi.openlogviewer.decoder.FreeEMSBin
FreeEmsBin Constructor: String path to your binary log
FreeEMSBin(File) - Constructor for class org.diyefi.openlogviewer.decoder.FreeEMSBin
FreeEmsBin Constructor: File object of your Binary log
FreeEMSBinFileFilter - Class in org.diyefi.openlogviewer.filefilters
 
FreeEMSBinFileFilter() - Constructor for class org.diyefi.openlogviewer.filefilters.FreeEMSBinFileFilter
 
FreeEMSFileFilter - Class in org.diyefi.openlogviewer.filefilters
 
FreeEMSFileFilter() - Constructor for class org.diyefi.openlogviewer.filefilters.FreeEMSFileFilter
 
FreeEMSLAFileFilter - Class in org.diyefi.openlogviewer.filefilters
 
FreeEMSLAFileFilter() - Constructor for class org.diyefi.openlogviewer.filefilters.FreeEMSLAFileFilter
 

G

GenericDataElement - Class in org.diyefi.openlogviewer.genericlog
GenericDataElement is Comparable Serializable and Transferable and supports property change events it was built this way in order to be copy/pasteable later in the future when constructed this is the meat and potatoes of the program, the graphs and data displayed are pulled from these objects.
GenericDataElement(int) - Constructor for class org.diyefi.openlogviewer.genericlog.GenericDataElement
Constructor brings the GDE up to speed, defaulting with an available 50,000 datapoints in order to reduce the number of times the Array list has to copy its contents in order to increase size.
GenericLog - Class in org.diyefi.openlogviewer.genericlog
 
GenericLog(String[], int, int) - Constructor for class org.diyefi.openlogviewer.genericlog.GenericLog
provide a String array of headers
each header will be used as a HashMap key, the data related to each header will be added to an ArrayList.
GenericLog.LogState - Enum in org.diyefi.openlogviewer.genericlog
 
get(int) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getAddTo() - Method in class org.diyefi.openlogviewer.decoder.LogField
 
getBestAvailableColor() - Method in enum org.diyefi.openlogviewer.coloring.InitialLineColoring
 
getBestSnappingPosition(int) - Method in class org.diyefi.openlogviewer.graphing.GraphPositionPanel
 
getBitFieldNames() - Method in class org.diyefi.openlogviewer.decoder.LogField
 
getColor() - Method in class org.diyefi.openlogviewer.coloring.MarkedColor
 
getColor() - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
 
getColor() - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
getData() - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
 
getDecodedLog() - Method in class org.diyefi.openlogviewer.decoder.AbstractDecoder
used for getting the decided log for injection to the main pieces of the program that will use it
getDescription() - Method in class org.diyefi.openlogviewer.decoder.LogField
 
getDescription() - Method in class org.diyefi.openlogviewer.filefilters.CSVFileFilter
 
getDescription() - Method in class org.diyefi.openlogviewer.filefilters.FreeEMSBinFileFilter
 
getDescription() - Method in class org.diyefi.openlogviewer.filefilters.FreeEMSFileFilter
 
getDescription() - Method in class org.diyefi.openlogviewer.filefilters.FreeEMSLAFileFilter
 
getDescription() - Method in class org.diyefi.openlogviewer.filefilters.LogFileFilter
 
getDescription() - Method in class org.diyefi.openlogviewer.filefilters.MSTypeFileFilter
 
getDisplayColor() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getDisplayMaxValue() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getDisplayMinValue() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getDivBy() - Method in class org.diyefi.openlogviewer.decoder.LogField
 
getEntireGraphingPanel() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
getExtension(File) - Static method in class org.diyefi.openlogviewer.utils.Utilities
 
getGraphPosition() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
getGraphPositionPanel() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
getHeader() - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
getHue() - Method in class org.diyefi.openlogviewer.coloring.MarkedColor
 
getID() - Method in class org.diyefi.openlogviewer.decoder.LogField
 
getInfoPanel() - Method in class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
 
getInstance() - Static method in class org.diyefi.openlogviewer.OpenLogViewer
Returns the reference to this instance, it is meant to be a method to make getting the main frame simpler
getLogFile() - Method in class org.diyefi.openlogviewer.decoder.AbstractDecoder
get the log File
getLogStatus() - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
 
getLogStatusMessage() - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
 
getMax() - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
getMaxValue() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getMetadata() - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
 
getMin() - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
getMinValue() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getMouseInfo(int) - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
Used for InfoLayer to get the data from the single graphs for data under the mouse
getMultiGraphLayeredPane() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
getMultiGraphLayeredPane() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
getName() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getOptionFrame() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
getProperties() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
getPropertyPane() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
getRecordCount() - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
 
getSplit() - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
getSplitNumber() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getT() - Method in class org.diyefi.openlogviewer.decoder.AbstractDecoder
get the thread, use this if you would like to give the thread a name such as "TYPEOFLOG Thread"
can also be used to set the thread priority after initialization of all variables required by the extended class you MUST call:
this.getT().start();
getTotalSplits() - Method in class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
 
getTransferData(DataFlavor) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getTransferDataFlavors() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
getType() - Method in class org.diyefi.openlogviewer.decoder.LogField
 
getUnit() - Method in class org.diyefi.openlogviewer.decoder.LogField
 
getWidth() - Method in enum org.diyefi.openlogviewer.decoder.LogField.types
 
getZoom() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
giveBackColor(Color) - Method in enum org.diyefi.openlogviewer.coloring.InitialLineColoring
 
GraphPositionPanel - Class in org.diyefi.openlogviewer.graphing
 
GraphPositionPanel() - Constructor for class org.diyefi.openlogviewer.graphing.GraphPositionPanel
 
graphSize() - Method in class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
Graph total size
graphSize() - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
Graph total size

I

increaseCapacity(int) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
incrementPosition() - Static method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
incrementPosition() - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
 
InfoPanel - Class in org.diyefi.openlogviewer.graphing
 
InfoPanel() - Constructor for class org.diyefi.openlogviewer.graphing.InfoPanel
 
initGraphZoomed() - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
initialize the graph any time you need to paint
initGraphZoomedOut() - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
initialize the graph any time you need to paint
InitialLineColoring - Enum in org.diyefi.openlogviewer.coloring
InitialLineColoring is used to provide the coloring for the GenericDataElements.
isActive() - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
isAvailable() - Method in class org.diyefi.openlogviewer.coloring.MarkedColor
 
isDataFlavorSupported(DataFlavor) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
isPlaying() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
isZoomedOutBeyondOneToOne() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 

K

keyPressed(KeyEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
keyReleased(KeyEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
keyTyped(KeyEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 

L

LEFT_OFFSCREEN_POINTS_ZOOMED_IN - Static variable in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
LEFT_OFFSCREEN_POINTS_ZOOMED_OUT - Static variable in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
LogField - Class in org.diyefi.openlogviewer.decoder
 
LogField(String) - Constructor for class org.diyefi.openlogviewer.decoder.LogField
 
LogField(String, LogField.types) - Constructor for class org.diyefi.openlogviewer.decoder.LogField
 
LogField(String, LogField.types, double) - Constructor for class org.diyefi.openlogviewer.decoder.LogField
 
LogField(String, double) - Constructor for class org.diyefi.openlogviewer.decoder.LogField
 
LogField(String, double, double) - Constructor for class org.diyefi.openlogviewer.decoder.LogField
 
LogField(String, LogField.types, double, double) - Constructor for class org.diyefi.openlogviewer.decoder.LogField
 
LogField(String, LogField.types, String[]) - Constructor for class org.diyefi.openlogviewer.decoder.LogField
 
LogField.types - Enum in org.diyefi.openlogviewer.decoder
 
LogFileFilter - Class in org.diyefi.openlogviewer.filefilters
 
LogFileFilter() - Constructor for class org.diyefi.openlogviewer.filefilters.LogFileFilter
 

M

main(String[]) - Static method in class org.diyefi.openlogviewer.OpenLogViewer
The entry point of OLV!
MarkedColor - Class in org.diyefi.openlogviewer.coloring
MarkedColor is a couplet used to allow the marking of colors as "unavailable" or "available".
MarkedColor() - Constructor for class org.diyefi.openlogviewer.coloring.MarkedColor
 
MarkedColor(Color) - Constructor for class org.diyefi.openlogviewer.coloring.MarkedColor
 
MarkedColor(boolean) - Constructor for class org.diyefi.openlogviewer.coloring.MarkedColor
 
MarkedColor(Color, boolean) - Constructor for class org.diyefi.openlogviewer.coloring.MarkedColor
 
MarkedColor(Color, boolean, double) - Constructor for class org.diyefi.openlogviewer.coloring.MarkedColor
 
MathUtils - Class in org.diyefi.openlogviewer.utils
Math is used to provide math functions specific to the project.
mouseClicked(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
mouseClicked(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
mouseDragged(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
mouseDragged(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
mouseEntered(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
mouseEntered(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
mouseExited(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
mouseExited(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
mouseMoved(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
mouseMoved(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
mousePressed(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
mousePressed(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
mouseReleased(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
mouseReleased(MouseEvent) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
mouseWheelMoved(MouseWheelEvent) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
MSTypeFileFilter - Class in org.diyefi.openlogviewer.filefilters
 
MSTypeFileFilter() - Constructor for class org.diyefi.openlogviewer.filefilters.MSTypeFileFilter
 
MultiGraphLayeredPane - Class in org.diyefi.openlogviewer.graphing
 
MultiGraphLayeredPane() - Constructor for class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
 

N

NEWLINE - Static variable in class org.diyefi.openlogviewer.OpenLogViewer
 

O

openFile() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
OpenLogViewer - Class in org.diyefi.openlogviewer
 
OpenLogViewer() - Constructor for class org.diyefi.openlogviewer.OpenLogViewer
 
OptionFrameV2 - Class in org.diyefi.openlogviewer.optionpanel
 
OptionFrameV2() - Constructor for class org.diyefi.openlogviewer.optionpanel.OptionFrameV2
 
org.diyefi.openlogviewer - package org.diyefi.openlogviewer
 
org.diyefi.openlogviewer.coloring - package org.diyefi.openlogviewer.coloring
 
org.diyefi.openlogviewer.decoder - package org.diyefi.openlogviewer.decoder
 
org.diyefi.openlogviewer.filefilters - package org.diyefi.openlogviewer.filefilters
 
org.diyefi.openlogviewer.genericlog - package org.diyefi.openlogviewer.genericlog
 
org.diyefi.openlogviewer.graphing - package org.diyefi.openlogviewer.graphing
 
org.diyefi.openlogviewer.optionpanel - package org.diyefi.openlogviewer.optionpanel
 
org.diyefi.openlogviewer.propertypanel - package org.diyefi.openlogviewer.propertypanel
 
org.diyefi.openlogviewer.utils - package org.diyefi.openlogviewer.utils
 

P

paint(Graphics) - Method in class org.diyefi.openlogviewer.graphing.GraphPositionPanel
 
paint(Graphics) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
paint(Graphics) - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
 
pause() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
PCS - Variable in class org.diyefi.openlogviewer.genericlog.GenericLog
 
play() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
PlayBarPanel - Class in org.diyefi.openlogviewer
 
PlayBarPanel() - Constructor for class org.diyefi.openlogviewer.PlayBarPanel
Default JPanel constructor initializing the playbar buttons
PropertiesPane - Class in org.diyefi.openlogviewer.propertypanel
 
PropertiesPane(String) - Constructor for class org.diyefi.openlogviewer.propertypanel.PropertiesPane
 
propertyChange(PropertyChangeEvent) - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
 

R

recordCountKey - Static variable in class org.diyefi.openlogviewer.genericlog.GenericLog
 
removeGraph(String) - Method in class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
 
removePropertyChangeListener(String, PropertyChangeListener) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
removePropertyChangeListener(String, PropertyChangeListener) - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
Remove a PropertyChangeListener
reset() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
TODO move this into GUI space and out of this class!!
resetPosition() - Static method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
resetProperties() - Method in class org.diyefi.openlogviewer.propertypanel.PropertiesPane
 
RIGHT_OFFSCREEN_POINTS_ZOOMED_IN - Static variable in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
RIGHT_OFFSCREEN_POINTS_ZOOMED_OUT - Static variable in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
roundToSignificantFigures(double, int) - Static method in class org.diyefi.openlogviewer.utils.MathUtils
 
run() - Method in class org.diyefi.openlogviewer.decoder.CSVTypeLog
 
run() - Method in class org.diyefi.openlogviewer.decoder.FreeEMSBin
DecodeLog will use the current logFile parse through it and when required pass the job
to the required method of this class such as decodePacket or checksum.

S

save() - Method in class org.diyefi.openlogviewer.propertypanel.PropertiesPane
 
setActive(boolean) - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
setAddTo(double) - Method in class org.diyefi.openlogviewer.decoder.LogField
 
setAvailability(boolean) - Method in class org.diyefi.openlogviewer.coloring.MarkedColor
 
setBitFieldNames(String[]) - Method in class org.diyefi.openlogviewer.decoder.LogField
 
setColor(Color) - Method in class org.diyefi.openlogviewer.coloring.MarkedColor
 
setColor(String, Color) - Method in class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
 
setColor(Color) - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
 
setColor(Color) - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
setData(GenericDataElement) - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
this is where the GDE is referenced and the graph gets initialized for the first time
setDecodedLog(GenericLog) - Method in class org.diyefi.openlogviewer.decoder.AbstractDecoder
sets the GenericLog
setDescription(String) - Method in class org.diyefi.openlogviewer.decoder.LogField
 
setDisplayColor(Color) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
setDisplayMaxValue(double) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
setDisplayMinValue(double) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
setDivBy(double) - Method in class org.diyefi.openlogviewer.decoder.LogField
 
setGraphPosition(double) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
setGraphSize(int) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
How many available data records we are dealing with.
setHeader(String) - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
setHue(double) - Method in class org.diyefi.openlogviewer.coloring.MarkedColor
 
setID(String) - Method in class org.diyefi.openlogviewer.decoder.LogField
 
setLog(GenericLog) - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 
setLog(GenericLog) - Method in class org.diyefi.openlogviewer.graphing.GraphPositionPanel
 
setLog(GenericLog) - Method in class org.diyefi.openlogviewer.graphing.InfoPanel
 
setLog(GenericLog) - Method in class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
 
setLog(GenericLog) - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
setLogFile(File) - Method in class org.diyefi.openlogviewer.decoder.AbstractDecoder
set the log File
setLogStatus(GenericLog.LogState) - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
Set the state of the log
setLogStatusMessage(String) - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
 
setMax(double) - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
setMetaData(String) - Method in class org.diyefi.openlogviewer.genericlog.GenericLog
Add metadata This is information about the log being converted such as the location it was from or the date
This method does not add to its self so in order to add more info you must VAR.addMetaData(VAR.getMetaData() + NEWINFO)
setMin(double) - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
setName(String) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
set header name, called during GenericLog construction
setProperties(List<SingleProperty>) - Method in class org.diyefi.openlogviewer.propertypanel.PropertiesPane
 
setSplit(int) - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
TODO add final to parameter and make work with this change.
setSplitNumber(int) - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
sets the splitNumber or division of the graph in the graphing screen if its the same a property change event is fired called "Split"
setT(Thread) - Method in class org.diyefi.openlogviewer.decoder.AbstractDecoder
set the Thread
setTotalSplits(int) - Method in class org.diyefi.openlogviewer.graphing.MultiGraphLayeredPane
 
setType(LogField.types) - Method in class org.diyefi.openlogviewer.decoder.LogField
 
setUnit(String) - Method in class org.diyefi.openlogviewer.decoder.LogField
 
SingleGraphPanel - Class in org.diyefi.openlogviewer.graphing
SingleGraphPanel is a JPanel that uses a transparent background.
SingleGraphPanel() - Constructor for class org.diyefi.openlogviewer.graphing.SingleGraphPanel
 
SingleProperty - Class in org.diyefi.openlogviewer.propertypanel
 
SingleProperty() - Constructor for class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
SingleProperty(GenericDataElement) - Constructor for class org.diyefi.openlogviewer.propertypanel.SingleProperty
 
size() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
sizeGraph() - Method in class org.diyefi.openlogviewer.graphing.SingleGraphPanel
maintains the size of the graph when applying divisions
slowDown() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
Slows the speed of playback by 1 ms
stop() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
 

T

tempResetKey - Static variable in class org.diyefi.openlogviewer.genericlog.GenericLog
 
toggleFullScreen() - Method in class org.diyefi.openlogviewer.OpenLogViewer
 
toString() - Method in class org.diyefi.openlogviewer.decoder.FreeEMSBin
 
toString() - Method in class org.diyefi.openlogviewer.genericlog.GenericDataElement
 
toString() - Method in class org.diyefi.openlogviewer.propertypanel.SingleProperty
 

U

updateFromLog(GenericLog) - Method in class org.diyefi.openlogviewer.optionpanel.OptionFrameV2
 
Utilities - Class in org.diyefi.openlogviewer.utils
 

V

valueOf(String) - Static method in enum org.diyefi.openlogviewer.coloring.InitialLineColoring
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.diyefi.openlogviewer.decoder.LogField.types
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.diyefi.openlogviewer.genericlog.GenericLog.LogState
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.diyefi.openlogviewer.coloring.InitialLineColoring
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.diyefi.openlogviewer.decoder.LogField.types
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.diyefi.openlogviewer.genericlog.GenericLog.LogState
Returns an array containing the constants of this enum type, in the order they are declared.

Z

zoomIn() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
Zoom in by one.
zoomInCoarse() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
Zoom in using steps larger the further away from 1:1 you are.
zoomOut() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
Zoom out by one.
zoomOutCoarse() - Method in class org.diyefi.openlogviewer.graphing.EntireGraphingPanel
Zoom out using steps larger the further away from 1:1 you are.

A C D E F G I K L M N O P R S T U V Z

Copyright © 2011 DIYEFI.org. All Rights Reserved.