Const.java :  » UML » umlet » com » umlet » element » base » activity » Java Open Source

Java Open Source » UML » umlet 
umlet » com » umlet » element » base » activity » Const.java
package com.umlet.element.base.activity;

public class Const {
  //vertical pad between elements
  public static final int PAD = 10;
  
  //horizontal pad between columns
  public static final int COLUMN_PAD = 30;
  
  //seperation of goto elements
  public static final int GOTO_SEP = 4;
  
  //left/right pad for diagram border
  public static final int DIAGRAM_PAD = 30;
  
  //minwidth/height of the diagram
  public static final int MIN_WIDTH = 50;
  public static final int MIN_HEIGHT = 50;
  
  public static final boolean DEBUG = false;
  public static boolean AutoInsertIF;
}
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.