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