KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > olap > model > Alignable


1 package com.tonbeller.jpivot.olap.model;
2
3
4 /**
5  * @author av
6  * @since 22.02.2005
7  */

8 public interface Alignable {
9
10   public static final class Alignment {
11     private String JavaDoc attributeValue;
12     public static final Alignment LEFT = new Alignment("left");
13     public static final Alignment RIGHT = new Alignment("right");
14
15     private Alignment(String JavaDoc attributeValue) {
16       this.attributeValue = attributeValue;
17     }
18
19     public String JavaDoc getAttributeValue() {
20       return attributeValue;
21     }
22   }
23
24   Alignment getAlignment();
25 }
26
Popular Tags