initial quantum version
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / view / bookmark / LabelDecorationInstructions.java
1 package com.quantum.view.bookmark;
2
3 /**
4  * <p>Label decorations are specified for the entire view<p>.
5  * 
6  * @author BC
7  */
8 public class LabelDecorationInstructions {
9     private boolean sizeVisible = false;
10     private boolean databaseDataVisible = false;
11     /**
12      * @return
13      */
14     public boolean isSizeVisible() {
15         return sizeVisible;
16     }
17
18     /**
19      * @param b
20      */
21     public void setSizeVisible(boolean b) {
22         sizeVisible = b;
23     }
24
25     /**
26      * @return
27      */
28     public boolean isDatabaseDataVisible() {
29         return databaseDataVisible;
30     }
31
32     /**
33      * @param b
34      */
35     public void setDatabaseDataVisible(boolean b) {
36         databaseDataVisible = b;
37     }
38
39 }