Examples of Scaling


Examples of org.foray.fotree.fo.enums.Scaling

     * issues.
     * @return True iff this object is required to preserve the aspect ratio
     * for embedded graphical objects.
     */
    public boolean scalingUniform(final FoContext context) {
        final Scaling scaling = this.traitScaling(context);
        return scaling == Scaling.UNIFORM;
    }
View Full Code Here

Examples of org.tinyuml.draw.Scaling

    int id = 12345;
    long now = System.currentTimeMillis();
    int modifiers = 0, clickCount = 2;
    int x = 134, y = 312;
    boolean popupTrigger = true;
    Scaling scaling = Scaling.SCALING_50;   
    MouseEvent event1 = new MouseEvent(comp, 12345, now, modifiers, x, y,
      clickCount, popupTrigger, MouseEvent.BUTTON2);
    MouseEvent event2 = new MouseEvent(comp, 12345, now, modifiers, x, y,
      1, !popupTrigger, MouseEvent.BUTTON1);
   
View Full Code Here

Examples of org.tinyuml.draw.Scaling

    int id = 12345;
    long now = System.currentTimeMillis();
    int modifiers = 0, clickCount = 2;
    int x = 134, y = 312;
    boolean popupTrigger = true;
    Scaling scaling = Scaling.SCALING_50;   
    MouseEvent event = new MouseEvent(comp, 12345, now, modifiers, x, y,
      clickCount, popupTrigger);
   
    EditorMouseEvent evt = new EditorMouseEvent();
    evt.setMouseEvent(event, scaling);
View Full Code Here

Examples of org.tinyuml.draw.Scaling

    int id = 12345;
    long now = System.currentTimeMillis();
    int modifiers = 0, clickCount = 2;
    int x = 134, y = 312;
    boolean popupTrigger = true;
    Scaling scaling = Scaling.SCALING_50;   
    MouseEvent event1 = new MouseEvent(comp, 12345, now, modifiers, x, y,
      clickCount, popupTrigger, MouseEvent.BUTTON2);
    MouseEvent event2 = new MouseEvent(comp, 12345, now, modifiers, x, y,
      1, !popupTrigger, MouseEvent.BUTTON1);
   
View Full Code Here

Examples of org.tinyuml.draw.Scaling

    int id = 12345;
    long now = System.currentTimeMillis();
    int modifiers = 0, clickCount = 2;
    int x = 134, y = 312;
    boolean popupTrigger = true;
    Scaling scaling = Scaling.SCALING_50;   
    MouseEvent event = new MouseEvent(comp, 12345, now, modifiers, x, y,
      clickCount, popupTrigger);
   
    EditorMouseEvent evt = new EditorMouseEvent();
    evt.setMouseEvent(event, scaling);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.