CVS 2002/css-validator/org/w3c/css/properties/paged

Update of /sources/public/2002/css-validator/org/w3c/css/properties/paged
In directory roscoe:/tmp/cvs-serv18602/paged

Modified Files:
	Css2Style.java 
Removed Files:
	Orphans.java OrphansATSC.java Widows.java WidowsATSC.java 
Log Message:
windows and orphans per css2/css21/css3

--- /sources/public/2002/css-validator/org/w3c/css/properties/paged/Css2Style.java	2012/12/07 12:18:57	1.5
+++ /sources/public/2002/css-validator/org/w3c/css/properties/paged/Css2Style.java	2013/09/30 01:08:43	1.6
@@ -1,5 +1,5 @@
 //
-// $Id: Css2Style.java,v 1.5 2012/12/07 12:18:57 ylafon Exp $
+// $Id: Css2Style.java,v 1.6 2013/09/30 01:08:43 ylafon Exp $
 // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr)
 //
 // (c) COPYRIGHT MIT and INRIA, 1997.
@@ -10,7 +10,7 @@
 
 
 /**
- * @version $Revision: 1.5 $
+ * @version $Revision: 1.6 $
  */
 public class Css2Style extends org.w3c.css.properties.css2.Css2Style {
 
@@ -26,10 +26,6 @@
 
     Page page;
     PageATSC pageATSC;
-    Orphans orphans;
-    OrphansATSC orphansATSC;
-    Widows widows;
-    WidowsATSC widowsATSC;
 
     /**
      * Get the size property
@@ -137,47 +133,4 @@
 	}
 	return pageATSC;
     }
-
-    /**
-     * Get the orphans property
-     */
-    public final Orphans getOrphans() {
-	if (orphans == null) {
-	    orphans =
-		(Orphans) style.CascadingOrder(new Orphans(),
-						       style, selector);
-	}
-	return orphans;
-    }
-
-    public final OrphansATSC getOrphansATSC() {
-	if (orphansATSC == null) {
-	    orphansATSC =
-		(OrphansATSC) style.CascadingOrder(new OrphansATSC(),
-						       style, selector);
-	}
-	return orphansATSC;
-    }
-
-    /**
-     * Get the widows property
-     */
-    public final Widows getWidows() {
-	if (widows == null) {
-	    widows =
-		(Widows) style.CascadingOrder(new Widows(),
-						       style, selector);
-	}
-	return widows;
-    }
-
-    public final WidowsATSC getWidowsATSC() {
-	if (widowsATSC == null) {
-	    widowsATSC =
-		(WidowsATSC) style.CascadingOrder(new WidowsATSC(),
-						       style, selector);
-	}
-	return widowsATSC;
-    }
-
 }

Received on Monday, 30 September 2013 01:08:44 UTC