00001 <?php
00002
00016
00017
00018
00019 import('controlledVocab.ControlledVocabEntry');
00020
00021 class PaperTypeEntry extends ControlledVocabEntry {
00022
00023
00024
00025
00030 function getLocalizedDescription() {
00031 return $this->getLocalizedData('description');
00032 }
00033
00039 function getDescription($locale) {
00040 return $this->getData('description', $locale);
00041 }
00042
00048 function setDescription($description, $locale) {
00049 return $this->setData('description', $description, $locale);
00050 }
00051
00056 function getAbstractLength() {
00057 return $this->getData('abstractLength');
00058 }
00059
00064 function setAbstractLength($abstractLength) {
00065 $this->setData('abstractLength', $abstractLength);
00066 }
00067
00072 function getLength() {
00073 return $this->getData('length');
00074 }
00075
00080 function setLength($length) {
00081 $this->setData('length', $length);
00082 }
00083 }
00084
00085 ?>