KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > editor2d > PositionConstants


1 /**
2  * <p> Project: com.nightlabs.editor2d.model </p>
3  * <p> Copyright: Copyright (c) 2005 </p>
4  * <p> Company: NightLabs GmbH (Germany) </p>
5  * <p> Creation Date: 10.08.2005 </p>
6  * <p> Author: Daniel Mazurek </p>
7 **/

8 package com.nightlabs.editor2d;
9
10 public class PositionConstants
11 {
12     public static final int ALIGNMENT_LEFT = 1;
13     public static final int ALIGNMENT_CENTER = 2;
14     public static final int ALIGNMENT_RIGHT = 2;
15     
16     public PositionConstants() {
17         super();
18     }
19
20 }
21
Popular Tags