1 2 17 18 package org.apache.poi.hpsf; 19 20 import java.util.List ; 21 22 53 public abstract class SpecialPropertySet extends PropertySet 54 { 55 56 60 private PropertySet delegate; 61 62 63 64 70 public SpecialPropertySet(final PropertySet ps) 71 { 72 delegate = ps; 73 } 74 75 76 77 80 public int getByteOrder() 81 { 82 return delegate.getByteOrder(); 83 } 84 85 86 87 90 public int getFormat() 91 { 92 return delegate.getFormat(); 93 } 94 95 96 97 100 public int getOSVersion() 101 { 102 return delegate.getOSVersion(); 103 } 104 105 106 107 110 public ClassID getClassID() 111 { 112 return delegate.getClassID(); 113 } 114 115 116 117 120 public int getSectionCount() 121 { 122 return delegate.getSectionCount(); 123 } 124 125 126 127 130 public List getSections() 131 { 132 return delegate.getSections(); 133 } 134 135 136 137 140 public boolean isSummaryInformation() 141 { 142 return delegate.isSummaryInformation(); 143 } 144 145 146 147 150 public boolean isDocumentSummaryInformation() 151 { 152 return delegate.isDocumentSummaryInformation(); 153 } 154 155 156 157 160 public Section getSingleSection() 161 { 162 return delegate.getSingleSection(); 163 } 164 165 } 166 | Popular Tags |