]> source.dussan.org Git - poi.git/blob
1913258
[poi.git] /
1 /* ====================================================================
2    Licensed to the Apache Software Foundation (ASF) under one or more
3    contributor license agreements.  See the NOTICE file distributed with
4    this work for additional information regarding copyright ownership.
5    The ASF licenses this file to You under the Apache License, Version 2.0
6    (the "License"); you may not use this file except in compliance with
7    the License.  You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 ==================================================================== */
17
18 package org.apache.poi.hwpf.usermodel;
19
20 import org.apache.poi.util.BitField;
21 import org.apache.poi.util.BitFieldFactory;
22 import org.apache.poi.util.LittleEndian;
23
24 /**
25  * This data structure is used by a paragraph to determine how it should drop
26  * its first letter. I think its the visual effect that will show a giant first
27  * letter to a paragraph. I've seen this used in the first paragraph of a book
28  * 
29  * @author Ryan Ackley
30  */
31 public final class DropCapSpecifier
32 {
33     private short _fdct;
34         private static BitField _lines = BitFieldFactory.getInstance( 0xf8 );
35         private static BitField _type = BitFieldFactory.getInstance( 0x07 );
36
37     public DropCapSpecifier()
38     {
39         this._fdct = 0;
40     }
41
42     public DropCapSpecifier( byte[] buf, int offset )
43     {
44         this( LittleEndian.getShort( buf, offset ) );
45     }
46
47     public DropCapSpecifier( short fdct )
48     {
49         this._fdct = fdct;
50     }
51
52     @Override
53     public DropCapSpecifier clone()
54     {
55         return new DropCapSpecifier( _fdct );
56     }
57
58     @Override
59     public boolean equals( Object obj )
60     {
61         if ( this == obj )
62             return true;
63         if ( obj == null )
64             return false;
65         if ( getClass() != obj.getClass() )
66             return false;
67         DropCapSpecifier other = (DropCapSpecifier) obj;
68         if ( _fdct != other._fdct )
69             return false;
70         return true;
71     }
72
73     public byte getCountOfLinesToDrop()
74     {
75         return (byte) _lines.getValue( _fdct );
76     }
77
78     public byte getDropCapType()
79     {
80         return (byte) _type.getValue( _fdct );
81     }
82
83     @Override
84     public int hashCode()
85     {
86         return _fdct;
87     }
88
89     public boolean isEmpty()
90     {
91         return _fdct == 0;
92     }
93
94     public void setCountOfLinesToDrop( byte value )
95     {
96         _fdct = (short) _lines.setValue( _fdct, value );
97     }
98
99     public void setDropCapType( byte value )
100     {
101         _fdct = (short) _type.setValue( _fdct, value );
102     }
103
104     public short toShort()
105     {
106         return _fdct;
107     }
108
109     @Override
110     public String toString()
111     {
112         if ( isEmpty() )
113             return "[DCS] EMPTY";
114
115         return "[DCS] (type: " + getDropCapType() + "; count: "
116                 + getCountOfLinesToDrop() + ")";
117     }
118 }