- From: CVS User ylafon <cvsmail@w3.org>
- Date: Thu, 06 Dec 2012 15:54:49 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2/table
In directory roscoe:/tmp/cvs-serv8396/css2/table
Modified Files:
Css2Style.java
Removed Files:
TableLayout.java TableLayoutATSC.java
Log Message:
table-layout per css2/css21
--- /sources/public/2002/css-validator/org/w3c/css/properties/css2/table/Css2Style.java 2012/12/05 15:47:17 1.6
+++ /sources/public/2002/css-validator/org/w3c/css/properties/css2/table/Css2Style.java 2012/12/06 15:54:48 1.7
@@ -1,5 +1,5 @@
//
-// $Id: Css2Style.java,v 1.6 2012/12/05 15:47:17 ylafon Exp $
+// $Id: Css2Style.java,v 1.7 2012/12/06 15:54:48 ylafon Exp $
// From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr)
//
// (c) COPYRIGHT MIT and INRIA, 1997.
@@ -9,7 +9,7 @@
package org.w3c.css.properties.css2.table;
/**
- * @version $Revision: 1.6 $
+ * @version $Revision: 1.7 $
*/
public class Css2Style extends org.w3c.css.properties.css2.Css2Style {
@@ -17,8 +17,6 @@
RowSpanATSC rowSpanATSC;
ColumnSpan columnSpan;
ColumnSpanATSC columnSpanATSC;
- TableLayout tableLayout;
- TableLayoutATSC tableLayoutATSC;
BorderSpacing borderSpacing;
BorderSpacingATSC borderSpacingATSC;
SpeakHeader speakHeader;
@@ -64,25 +62,6 @@
}
/**
- * Get the table-layout property
- */
- public final TableLayout getTableLayout() {
- if (tableLayout == null) {
- tableLayout = (TableLayout)
- style.CascadingOrder(new TableLayout(), style, selector);
- }
- return tableLayout;
- }
-
- public final TableLayoutATSC getTableLayoutATSC() {
- if (tableLayoutATSC == null) {
- tableLayoutATSC = (TableLayoutATSC)
- style.CascadingOrder(new TableLayoutATSC(), style, selector);
- }
- return tableLayoutATSC;
- }
-
- /**
* Get the border-spacing property
*/
public final BorderSpacing getBorderSpacing() {
Received on Thursday, 6 December 2012 15:54:51 UTC