All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tagtraum.perf.gcviewer.view.model.PropertyChangeEventConsts Maven / Gradle / Ivy

Go to download

GCViewer is a little tool that visualizes verbose GC output generated by Sun / Oracle, IBM, HP and BEA Java Virtual Machines. It is free software released under GNU LGPL.

The newest version!
package com.tagtraum.perf.gcviewer.view.model;

/**
 * Constants for property change events.
 */
public interface PropertyChangeEventConsts {
    /** 
     * internal event: used to indicate changes in the "offset" property of the
     * ModelChartImpl.Ruler class
     *
     * 

Parameters: *

oldValue: offset before (Double) *

newValue: offset after (Double) */ String RULER_OFFSET_CHANGED = "rulerOffsetChanged"; /** * used to indicate that the format of the timestamp ruler has changed (seconds since beginning * vs. datestamps) * *

Parameters: *

oldValue: dateStamp was shown before (boolean) *

newValue: dateStamp is shown now (boolean) */ String MODELCHART_TIMESTAMP_RULER_FORMAT_CHANGED = "modelchartTimestampRulerFormatChanged"; /** * Used to indicate that the state of the date / checkbox in the * {@link com.tagtraum.perf.gcviewer.view.TimeOffsetPanel} has changed * *

Parameters *

oldValue: checkbox state before *

newValue: checkbox state now */ String TIMEOFFSETPANEL_STATE_CHANGED = "timeoffsetpanelStateChanged"; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy