LabelLayoutFactory.java :  » Development » Barbecue-1.5 » net » sourceforge » barbecue » output » Java Open Source

Java Open Source » Development » Barbecue 1.5 
Barbecue 1.5 » net » sourceforge » barbecue » output » LabelLayoutFactory.java
package net.sourceforge.barbecue.output;

public class LabelLayoutFactory {

  public static LabelLayout createOriginLayout(int x, int y) {
    return new DefaultLabelLayout(x, y);
  }

  public static LabelLayout createCenteredLayout(int x, int y, int width) {
    return new CenteredLabelLayout(x, y, width);
  }

  public static LabelLayout createMarginLayout(int x, int y, int width, int height) {
    return new MarginLabelLayout(x, y, width, height);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.