com.sun.hotspot.igv.data.Properties.PropertyMatcher Java Examples

The following examples show how to use com.sun.hotspot.igv.data.Properties.PropertyMatcher. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: EditorTopComponent.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public void setSelection(PropertyMatcher matcher) {

        Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(scene.getModel().getDiagramToView().getFigures());
        List<Figure> list = selector.selectMultiple(matcher);
        boolean b = scene.getUndoRedoEnabled();
        scene.setUndoRedoEnabled(false);
        scene.gotoFigures(list);
        scene.setUndoRedoEnabled(b);
        scene.setSelection(list);
    }
 
Example #2
Source File: EditorTopComponent.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void setSelection(PropertyMatcher matcher) {

        Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(scene.getModel().getDiagramToView().getFigures());
        List<Figure> list = selector.selectMultiple(matcher);
        boolean b = scene.getUndoRedoEnabled();
        scene.setUndoRedoEnabled(false);
        scene.gotoFigures(list);
        scene.setUndoRedoEnabled(b);
        scene.setSelection(list);
    }
 
Example #3
Source File: EditorTopComponent.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public void setSelection(PropertyMatcher matcher) {

        Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(scene.getModel().getDiagramToView().getFigures());
        List<Figure> list = selector.selectMultiple(matcher);
        boolean b = scene.getUndoRedoEnabled();
        scene.setUndoRedoEnabled(false);
        scene.gotoFigures(list);
        scene.setUndoRedoEnabled(b);
        scene.setSelection(list);
    }
 
Example #4
Source File: EditorTopComponent.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public void setSelection(PropertyMatcher matcher) {

        Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(scene.getModel().getDiagramToView().getFigures());
        List<Figure> list = selector.selectMultiple(matcher);
        boolean b = scene.getUndoRedoEnabled();
        scene.setUndoRedoEnabled(false);
        scene.gotoFigures(list);
        scene.setUndoRedoEnabled(b);
        scene.setSelection(list);
    }
 
Example #5
Source File: EditorTopComponent.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public void setSelection(PropertyMatcher matcher) {

        Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(scene.getModel().getDiagramToView().getFigures());
        List<Figure> list = selector.selectMultiple(matcher);
        boolean b = scene.getUndoRedoEnabled();
        scene.setUndoRedoEnabled(false);
        scene.gotoFigures(list);
        scene.setUndoRedoEnabled(b);
        scene.setSelection(list);
    }
 
Example #6
Source File: EditorTopComponent.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public void setSelection(PropertyMatcher matcher) {

        Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(scene.getModel().getDiagramToView().getFigures());
        List<Figure> list = selector.selectMultiple(matcher);
        boolean b = scene.getUndoRedoEnabled();
        scene.setUndoRedoEnabled(false);
        scene.gotoFigures(list);
        scene.setUndoRedoEnabled(b);
        scene.setSelection(list);
    }
 
Example #7
Source File: EditorTopComponent.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public void setSelection(PropertyMatcher matcher) {

        Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(scene.getModel().getDiagramToView().getFigures());
        List<Figure> list = selector.selectMultiple(matcher);
        boolean b = scene.getUndoRedoEnabled();
        scene.setUndoRedoEnabled(false);
        scene.gotoFigures(list);
        scene.setUndoRedoEnabled(b);
        scene.setSelection(list);
    }
 
Example #8
Source File: CombineFilter.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public CombineRule(PropertyMatcher first, PropertyMatcher second, boolean reversed) {
    this.first = first;
    this.second = second;
    this.reversed = reversed;
}
 
Example #9
Source File: CombineFilter.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public CombineRule(PropertyMatcher first, PropertyMatcher second, boolean reversed, String shortProperty) {
    this.first = first;
    this.second = second;
    this.reversed = reversed;
    this.shortProperty = shortProperty;
}
 
Example #10
Source File: CombineFilter.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getFirstMatcher() {
    return first;
}
 
Example #11
Source File: CombineFilter.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getSecondMatcher() {
    return second;
}
 
Example #12
Source File: EditorTopComponent.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public void setSelection(PropertyMatcher matcher) {

        Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<>(getModel().getDiagramToView().getFigures());
        List<Figure> list = selector.selectMultiple(matcher);
        setSelectedFigures(list);
    }
 
Example #13
Source File: MatcherSelector.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public MatcherSelector(PropertyMatcher matcher) {
    this.matcher = matcher;
}
 
Example #14
Source File: CombineFilter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public CombineRule(PropertyMatcher first, PropertyMatcher second, boolean reversed) {
    this.first = first;
    this.second = second;
    this.reversed = reversed;
}
 
Example #15
Source File: CombineFilter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getFirstMatcher() {
    return first;
}
 
Example #16
Source File: CombineFilter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getSecondMatcher() {
    return second;
}
 
Example #17
Source File: MatcherSelector.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public MatcherSelector(PropertyMatcher matcher) {
    this.matcher = matcher;
}
 
Example #18
Source File: CombineFilter.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public CombineRule(PropertyMatcher first, PropertyMatcher second, boolean reversed) {
    this.first = first;
    this.second = second;
    this.reversed = reversed;
}
 
Example #19
Source File: CombineFilter.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getFirstMatcher() {
    return first;
}
 
Example #20
Source File: CombineFilter.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getSecondMatcher() {
    return second;
}
 
Example #21
Source File: MatcherSelector.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public MatcherSelector(PropertyMatcher matcher) {
    this.matcher = matcher;
}
 
Example #22
Source File: CombineFilter.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public CombineRule(PropertyMatcher first, PropertyMatcher second, boolean reversed) {
    this.first = first;
    this.second = second;
    this.reversed = reversed;
}
 
Example #23
Source File: CombineFilter.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getFirstMatcher() {
    return first;
}
 
Example #24
Source File: CombineFilter.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getSecondMatcher() {
    return second;
}
 
Example #25
Source File: MatcherSelector.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public MatcherSelector(PropertyMatcher matcher) {
    this.matcher = matcher;
}
 
Example #26
Source File: CombineFilter.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getSecondMatcher() {
    return second;
}
 
Example #27
Source File: CombineFilter.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public CombineRule(PropertyMatcher first, PropertyMatcher second, boolean reversed) {
    this.first = first;
    this.second = second;
    this.reversed = reversed;
}
 
Example #28
Source File: CombineFilter.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getFirstMatcher() {
    return first;
}
 
Example #29
Source File: CombineFilter.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public PropertyMatcher getSecondMatcher() {
    return second;
}
 
Example #30
Source File: MatcherSelector.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public MatcherSelector(PropertyMatcher matcher) {
    this.matcher = matcher;
}