KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > steadystate > css > dom > CSS2PropertiesImpl


1 /*
2  * CSS2PropertiesImpl.java
3  *
4  * Steady State CSS2 Parser
5  *
6  * Copyright (C) 1999, 2002 Steady State Software Ltd. All rights reserved.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  * To contact the authors of the library, write to Steady State Software Ltd.,
23  * 49 Littleworth, Wing, Buckinghamshire, LU7 0JX, England
24  *
25  * http://www.steadystate.com/css/
26  * mailto:css@steadystate.co.uk
27  *
28  * $Id: CSS2PropertiesImpl.java,v 1.1.1.1 2003/12/28 21:22:46 davidsch Exp $
29  */

30
31 package com.steadystate.css.dom;
32
33 import java.io.Serializable JavaDoc;
34 import org.w3c.dom.*;
35 import org.w3c.dom.css.*;
36
37 /**
38  *
39  * @author David
40  * @version
41  */

42 public class CSS2PropertiesImpl implements CSS2Properties, Serializable JavaDoc {
43
44     /** Creates new CSS2PropertiesImpl */
45     public CSS2PropertiesImpl() {
46     }
47
48     public String JavaDoc getAzimuth() {
49         return null;
50     }
51
52     public void setAzimuth(String JavaDoc azimuth) throws DOMException {
53     }
54
55     public String JavaDoc getBackground() {
56         return null;
57     }
58
59     public void setBackground(String JavaDoc background) throws DOMException {
60     }
61
62     public String JavaDoc getBackgroundAttachment() {
63         return null;
64     }
65
66     public void setBackgroundAttachment(String JavaDoc backgroundAttachment) throws DOMException {
67     }
68
69     public String JavaDoc getBackgroundColor() {
70         return null;
71     }
72
73     public void setBackgroundColor(String JavaDoc backgroundColor) throws DOMException {
74     }
75
76     public String JavaDoc getBackgroundImage() {
77         return null;
78     }
79
80     public void setBackgroundImage(String JavaDoc backgroundImage) throws DOMException {
81     }
82
83     public String JavaDoc getBackgroundPosition() {
84         return null;
85     }
86
87     public void setBackgroundPosition(String JavaDoc backgroundPosition) throws DOMException {
88     }
89
90     public String JavaDoc getBackgroundRepeat() {
91         return null;
92     }
93
94     public void setBackgroundRepeat(String JavaDoc backgroundRepeat) throws DOMException {
95     }
96
97     public String JavaDoc getBorder() {
98         return null;
99     }
100
101     public void setBorder(String JavaDoc border) throws DOMException {
102     }
103
104     public String JavaDoc getBorderCollapse() {
105         return null;
106     }
107
108     public void setBorderCollapse(String JavaDoc borderCollapse) throws DOMException {
109     }
110
111     public String JavaDoc getBorderColor() {
112         return null;
113     }
114
115     public void setBorderColor(String JavaDoc borderColor) throws DOMException {
116     }
117
118     public String JavaDoc getBorderSpacing() {
119         return null;
120     }
121
122     public void setBorderSpacing(String JavaDoc borderSpacing) throws DOMException {
123     }
124
125     public String JavaDoc getBorderStyle() {
126         return null;
127     }
128
129     public void setBorderStyle(String JavaDoc borderStyle) throws DOMException {
130     }
131
132     public String JavaDoc getBorderTop() {
133         return null;
134     }
135
136     public void setBorderTop(String JavaDoc borderTop) throws DOMException {
137     }
138
139     public String JavaDoc getBorderRight() {
140         return null;
141     }
142
143     public void setBorderRight(String JavaDoc borderRight) throws DOMException {
144     }
145
146     public String JavaDoc getBorderBottom() {
147         return null;
148     }
149
150     public void setBorderBottom(String JavaDoc borderBottom) throws DOMException {
151     }
152
153     public String JavaDoc getBorderLeft() {
154         return null;
155     }
156
157     public void setBorderLeft(String JavaDoc borderLeft) throws DOMException {
158     }
159
160     public String JavaDoc getBorderTopColor() {
161         return null;
162     }
163
164     public void setBorderTopColor(String JavaDoc borderTopColor) throws DOMException {
165     }
166
167     public String JavaDoc getBorderRightColor() {
168         return null;
169     }
170
171     public void setBorderRightColor(String JavaDoc borderRightColor) throws DOMException {
172     }
173
174     public String JavaDoc getBorderBottomColor() {
175         return null;
176     }
177
178     public void setBorderBottomColor(String JavaDoc borderBottomColor) throws DOMException {
179     }
180
181     public String JavaDoc getBorderLeftColor() {
182         return null;
183     }
184
185     public void setBorderLeftColor(String JavaDoc borderLeftColor) throws DOMException {
186     }
187
188     public String JavaDoc getBorderTopStyle() {
189         return null;
190     }
191
192     public void setBorderTopStyle(String JavaDoc borderTopStyle) throws DOMException {
193     }
194
195     public String JavaDoc getBorderRightStyle() {
196         return null;
197     }
198
199     public void setBorderRightStyle(String JavaDoc borderRightStyle) throws DOMException {
200     }
201
202     public String JavaDoc getBorderBottomStyle() {
203         return null;
204     }
205
206     public void setBorderBottomStyle(String JavaDoc borderBottomStyle) throws DOMException {
207     }
208
209     public String JavaDoc getBorderLeftStyle() {
210         return null;
211     }
212
213     public void setBorderLeftStyle(String JavaDoc borderLeftStyle) throws DOMException {
214     }
215
216     public String JavaDoc getBorderTopWidth() {
217         return null;
218     }
219
220     public void setBorderTopWidth(String JavaDoc borderTopWidth) throws DOMException {
221     }
222
223     public String JavaDoc getBorderRightWidth() {
224         return null;
225     }
226
227     public void setBorderRightWidth(String JavaDoc borderRightWidth) throws DOMException {
228     }
229
230     public String JavaDoc getBorderBottomWidth() {
231         return null;
232     }
233
234     public void setBorderBottomWidth(String JavaDoc borderBottomWidth) throws DOMException {
235     }
236
237     public String JavaDoc getBorderLeftWidth() {
238         return null;
239     }
240
241     public void setBorderLeftWidth(String JavaDoc borderLeftWidth) throws DOMException {
242     }
243
244     public String JavaDoc getBorderWidth() {
245         return null;
246     }
247
248     public void setBorderWidth(String JavaDoc borderWidth) throws DOMException {
249     }
250
251     public String JavaDoc getBottom() {
252         return null;
253     }
254
255     public void setBottom(String JavaDoc bottom) throws DOMException {
256     }
257
258     public String JavaDoc getCaptionSide() {
259         return null;
260     }
261
262     public void setCaptionSide(String JavaDoc captionSide) throws DOMException {
263     }
264
265     public String JavaDoc getClear() {
266         return null;
267     }
268
269     public void setClear(String JavaDoc clear) throws DOMException {
270     }
271
272     public String JavaDoc getClip() {
273         return null;
274     }
275
276     public void setClip(String JavaDoc clip) throws DOMException {
277     }
278
279     public String JavaDoc getColor() {
280         return null;
281     }
282
283     public void setColor(String JavaDoc color) throws DOMException {
284     }
285
286     public String JavaDoc getContent() {
287         return null;
288     }
289
290     public void setContent(String JavaDoc content) throws DOMException {
291     }
292
293     public String JavaDoc getCounterIncrement() {
294         return null;
295     }
296
297     public void setCounterIncrement(String JavaDoc counterIncrement) throws DOMException {
298     }
299
300     public String JavaDoc getCounterReset() {
301         return null;
302     }
303
304     public void setCounterReset(String JavaDoc counterReset) throws DOMException {
305     }
306
307     public String JavaDoc getCue() {
308         return null;
309     }
310
311     public void setCue(String JavaDoc cue) throws DOMException {
312     }
313
314     public String JavaDoc getCueAfter() {
315         return null;
316     }
317
318     public void setCueAfter(String JavaDoc cueAfter) throws DOMException {
319     }
320
321     public String JavaDoc getCueBefore() {
322         return null;
323     }
324
325     public void setCueBefore(String JavaDoc cueBefore) throws DOMException {
326     }
327
328     public String JavaDoc getCursor() {
329         return null;
330     }
331
332     public void setCursor(String JavaDoc cursor) throws DOMException {
333     }
334
335     public String JavaDoc getDirection() {
336         return null;
337     }
338
339     public void setDirection(String JavaDoc direction) throws DOMException {
340     }
341
342     public String JavaDoc getDisplay() {
343         return null;
344     }
345
346     public void setDisplay(String JavaDoc display) throws DOMException {
347     }
348
349     public String JavaDoc getElevation() {
350         return null;
351     }
352
353     public void setElevation(String JavaDoc elevation) throws DOMException {
354     }
355
356     public String JavaDoc getEmptyCells() {
357         return null;
358     }
359
360     public void setEmptyCells(String JavaDoc emptyCells) throws DOMException {
361     }
362
363     public String JavaDoc getCssFloat() {
364         return null;
365     }
366
367     public void setCssFloat(String JavaDoc cssFloat) throws DOMException {
368     }
369
370     public String JavaDoc getFont() {
371         return null;
372     }
373
374     public void setFont(String JavaDoc font) throws DOMException {
375     }
376
377     public String JavaDoc getFontFamily() {
378         return null;
379     }
380
381     public void setFontFamily(String JavaDoc fontFamily) throws DOMException {
382     }
383
384     public String JavaDoc getFontSize() {
385         return null;
386     }
387
388     public void setFontSize(String JavaDoc fontSize) throws DOMException {
389     }
390
391     public String JavaDoc getFontSizeAdjust() {
392         return null;
393     }
394
395     public void setFontSizeAdjust(String JavaDoc fontSizeAdjust) throws DOMException {
396     }
397
398     public String JavaDoc getFontStretch() {
399         return null;
400     }
401
402     public void setFontStretch(String JavaDoc fontStretch) throws DOMException {
403     }
404
405     public String JavaDoc getFontStyle() {
406         return null;
407     }
408
409     public void setFontStyle(String JavaDoc fontStyle) throws DOMException {
410     }
411
412     public String JavaDoc getFontVariant() {
413         return null;
414     }
415
416     public void setFontVariant(String JavaDoc fontVariant) throws DOMException {
417     }
418
419     public String JavaDoc getFontWeight() {
420         return null;
421     }
422
423     public void setFontWeight(String JavaDoc fontWeight) throws DOMException {
424     }
425
426     public String JavaDoc getHeight() {
427         return null;
428     }
429
430     public void setHeight(String JavaDoc height) throws DOMException {
431     }
432
433     public String JavaDoc getLeft() {
434         return null;
435     }
436
437     public void setLeft(String JavaDoc left) throws DOMException {
438     }
439
440     public String JavaDoc getLetterSpacing() {
441         return null;
442     }
443
444     public void setLetterSpacing(String JavaDoc letterSpacing) throws DOMException {
445     }
446
447     public String JavaDoc getLineHeight() {
448         return null;
449     }
450
451     public void setLineHeight(String JavaDoc lineHeight) throws DOMException {
452     }
453
454     public String JavaDoc getListStyle() {
455         return null;
456     }
457
458     public void setListStyle(String JavaDoc listStyle) throws DOMException {
459     }
460
461     public String JavaDoc getListStyleImage() {
462         return null;
463     }
464
465     public void setListStyleImage(String JavaDoc listStyleImage) throws DOMException {
466     }
467
468     public String JavaDoc getListStylePosition() {
469         return null;
470     }
471
472     public void setListStylePosition(String JavaDoc listStylePosition) throws DOMException {
473     }
474
475     public String JavaDoc getListStyleType() {
476         return null;
477     }
478
479     public void setListStyleType(String JavaDoc listStyleType) throws DOMException {
480     }
481
482     public String JavaDoc getMargin() {
483         return null;
484     }
485
486     public void setMargin(String JavaDoc margin) throws DOMException {
487     }
488
489     public String JavaDoc getMarginTop() {
490         return null;
491     }
492
493     public void setMarginTop(String JavaDoc marginTop) throws DOMException {
494     }
495
496     public String JavaDoc getMarginRight() {
497         return null;
498     }
499
500     public void setMarginRight(String JavaDoc marginRight) throws DOMException {
501     }
502
503     public String JavaDoc getMarginBottom() {
504         return null;
505     }
506
507     public void setMarginBottom(String JavaDoc marginBottom) throws DOMException {
508     }
509
510     public String JavaDoc getMarginLeft() {
511         return null;
512     }
513
514     public void setMarginLeft(String JavaDoc marginLeft) throws DOMException {
515     }
516
517     public String JavaDoc getMarkerOffset() {
518         return null;
519     }
520
521     public void setMarkerOffset(String JavaDoc markerOffset) throws DOMException {
522     }
523
524     public String JavaDoc getMarks() {
525         return null;
526     }
527
528     public void setMarks(String JavaDoc marks) throws DOMException {
529     }
530
531     public String JavaDoc getMaxHeight() {
532         return null;
533     }
534
535     public void setMaxHeight(String JavaDoc maxHeight) throws DOMException {
536     }
537
538     public String JavaDoc getMaxWidth() {
539         return null;
540     }
541
542     public void setMaxWidth(String JavaDoc maxWidth) throws DOMException {
543     }
544
545     public String JavaDoc getMinHeight() {
546         return null;
547     }
548
549     public void setMinHeight(String JavaDoc minHeight) throws DOMException {
550     }
551
552     public String JavaDoc getMinWidth() {
553         return null;
554     }
555
556     public void setMinWidth(String JavaDoc minWidth) throws DOMException {
557     }
558
559     public String JavaDoc getOrphans() {
560         return null;
561     }
562
563     public void setOrphans(String JavaDoc orphans) throws DOMException {
564     }
565
566     public String JavaDoc getOutline() {
567         return null;
568     }
569
570     public void setOutline(String JavaDoc outline) throws DOMException {
571     }
572
573     public String JavaDoc getOutlineColor() {
574         return null;
575     }
576
577     public void setOutlineColor(String JavaDoc outlineColor) throws DOMException {
578     }
579
580     public String JavaDoc getOutlineStyle() {
581         return null;
582     }
583
584     public void setOutlineStyle(String JavaDoc outlineStyle) throws DOMException {
585     }
586
587     public String JavaDoc getOutlineWidth() {
588         return null;
589     }
590
591     public void setOutlineWidth(String JavaDoc outlineWidth) throws DOMException {
592     }
593
594     public String JavaDoc getOverflow() {
595         return null;
596     }
597
598     public void setOverflow(String JavaDoc overflow) throws DOMException {
599     }
600
601     public String JavaDoc getPadding() {
602         return null;
603     }
604
605     public void setPadding(String JavaDoc padding) throws DOMException {
606     }
607
608     public String JavaDoc getPaddingTop() {
609         return null;
610     }
611
612     public void setPaddingTop(String JavaDoc paddingTop) throws DOMException {
613     }
614
615     public String JavaDoc getPaddingRight() {
616         return null;
617     }
618
619     public void setPaddingRight(String JavaDoc paddingRight) throws DOMException {
620     }
621
622     public String JavaDoc getPaddingBottom() {
623         return null;
624     }
625
626     public void setPaddingBottom(String JavaDoc paddingBottom) throws DOMException {
627     }
628
629     public String JavaDoc getPaddingLeft() {
630         return null;
631     }
632
633     public void setPaddingLeft(String JavaDoc paddingLeft) throws DOMException {
634     }
635
636     public String JavaDoc getPage() {
637         return null;
638     }
639
640     public void setPage(String JavaDoc page) throws DOMException {
641     }
642
643     public String JavaDoc getPageBreakAfter() {
644         return null;
645     }
646
647     public void setPageBreakAfter(String JavaDoc pageBreakAfter) throws DOMException {
648     }
649
650     public String JavaDoc getPageBreakBefore() {
651         return null;
652     }
653
654     public void setPageBreakBefore(String JavaDoc pageBreakBefore) throws DOMException {
655     }
656
657     public String JavaDoc getPageBreakInside() {
658         return null;
659     }
660
661     public void setPageBreakInside(String JavaDoc pageBreakInside) throws DOMException {
662     }
663
664     public String JavaDoc getPause() {
665         return null;
666     }
667
668     public void setPause(String JavaDoc pause) throws DOMException {
669     }
670
671     public String JavaDoc getPauseAfter() {
672         return null;
673     }
674
675     public void setPauseAfter(String JavaDoc pauseAfter) throws DOMException {
676     }
677
678     public String JavaDoc getPauseBefore() {
679         return null;
680     }
681
682     public void setPauseBefore(String JavaDoc pauseBefore) throws DOMException {
683     }
684
685     public String JavaDoc getPitch() {
686         return null;
687     }
688
689     public void setPitch(String JavaDoc pitch) throws DOMException {
690     }
691
692     public String JavaDoc getPitchRange() {
693         return null;
694     }
695
696     public void setPitchRange(String JavaDoc pitchRange) throws DOMException {
697     }
698
699     public String JavaDoc getPlayDuring() {
700         return null;
701     }
702
703     public void setPlayDuring(String JavaDoc playDuring) throws DOMException {
704     }
705
706     public String JavaDoc getPosition() {
707         return null;
708     }
709
710     public void setPosition(String JavaDoc position) throws DOMException {
711     }
712
713     public String JavaDoc getQuotes() {
714         return null;
715     }
716
717     public void setQuotes(String JavaDoc quotes) throws DOMException {
718     }
719
720     public String JavaDoc getRichness() {
721         return null;
722     }
723
724     public void setRichness(String JavaDoc richness) throws DOMException {
725     }
726
727     public String JavaDoc getRight() {
728         return null;
729     }
730
731     public void setRight(String JavaDoc right) throws DOMException {
732     }
733
734     public String JavaDoc getSize() {
735         return null;
736     }
737
738     public void setSize(String JavaDoc size) throws DOMException {
739     }
740
741     public String JavaDoc getSpeak() {
742         return null;
743     }
744
745     public void setSpeak(String JavaDoc speak) throws DOMException {
746     }
747
748     public String JavaDoc getSpeakHeader() {
749         return null;
750     }
751
752     public void setSpeakHeader(String JavaDoc speakHeader) throws DOMException {
753     }
754
755     public String JavaDoc getSpeakNumeral() {
756         return null;
757     }
758
759     public void setSpeakNumeral(String JavaDoc speakNumeral) throws DOMException {
760     }
761
762     public String JavaDoc getSpeakPunctuation() {
763         return null;
764     }
765
766     public void setSpeakPunctuation(String JavaDoc speakPunctuation) throws DOMException {
767     }
768
769     public String JavaDoc getSpeechRate() {
770         return null;
771     }
772
773     public void setSpeechRate(String JavaDoc speechRate) throws DOMException {
774     }
775
776     public String JavaDoc getStress() {
777         return null;
778     }
779
780     public void setStress(String JavaDoc stress) throws DOMException {
781     }
782
783     public String JavaDoc getTableLayout() {
784         return null;
785     }
786
787     public void setTableLayout(String JavaDoc tableLayout) throws DOMException {
788     }
789
790     public String JavaDoc getTextAlign() {
791         return null;
792     }
793
794     public void setTextAlign(String JavaDoc textAlign) throws DOMException {
795     }
796
797     public String JavaDoc getTextDecoration() {
798         return null;
799     }
800
801     public void setTextDecoration(String JavaDoc textDecoration) throws DOMException {
802     }
803
804     public String JavaDoc getTextIndent() {
805         return null;
806     }
807
808     public void setTextIndent(String JavaDoc textIndent) throws DOMException {
809     }
810
811     public String JavaDoc getTextShadow() {
812         return null;
813     }
814
815     public void setTextShadow(String JavaDoc textShadow) throws DOMException {
816     }
817
818     public String JavaDoc getTextTransform() {
819         return null;
820     }
821
822     public void setTextTransform(String JavaDoc textTransform) throws DOMException {
823     }
824
825     public String JavaDoc getTop() {
826         return null;
827     }
828
829     public void setTop(String JavaDoc top) throws DOMException {
830     }
831
832     public String JavaDoc getUnicodeBidi() {
833         return null;
834     }
835
836     public void setUnicodeBidi(String JavaDoc unicodeBidi) throws DOMException {
837     }
838
839     public String JavaDoc getVerticalAlign() {
840         return null;
841     }
842
843     public void setVerticalAlign(String JavaDoc verticalAlign) throws DOMException {
844     }
845
846     public String JavaDoc getVisibility() {
847         return null;
848     }
849
850     public void setVisibility(String JavaDoc visibility) throws DOMException {
851     }
852
853     public String JavaDoc getVoiceFamily() {
854         return null;
855     }
856
857     public void setVoiceFamily(String JavaDoc voiceFamily) throws DOMException {
858     }
859
860     public String JavaDoc getVolume() {
861         return null;
862     }
863
864     public void setVolume(String JavaDoc volume) throws DOMException {
865     }
866
867     public String JavaDoc getWhiteSpace() {
868         return null;
869     }
870
871     public void setWhiteSpace(String JavaDoc whiteSpace) throws DOMException {
872     }
873
874     public String JavaDoc getWidows() {
875         return null;
876     }
877
878     public void setWidows(String JavaDoc widows) throws DOMException {
879     }
880
881     public String JavaDoc getWidth() {
882         return null;
883     }
884
885     public void setWidth(String JavaDoc width) throws DOMException {
886     }
887
888     public String JavaDoc getWordSpacing() {
889         return null;
890     }
891
892     public void setWordSpacing(String JavaDoc wordSpacing) throws DOMException {
893     }
894
895     public String JavaDoc getZIndex() {
896         return null;
897     }
898
899     public void setZIndex(String JavaDoc zIndex) throws DOMException {
900     }
901 }
Popular Tags