Revision: 7494
Author: victormote
Date: 2006-06-09 17:01:22 -0700 (Fri, 09 Jun 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7494&view=rev
Log Message:
-----------
Remove no-longer-needed class.
Modified Paths:
--------------
trunk/foray/foray-areatree/src/java/org/foray/area/TableColumnRA.java
Modified: trunk/foray/foray-areatree/src/java/org/foray/area/TableColumnRA.java
===================================================================
--- trunk/foray/foray-areatree/src/java/org/foray/area/TableColumnRA.java 2006-06-09 23:59:25 UTC (rev 7493)
+++ trunk/foray/foray-areatree/src/java/org/foray/area/TableColumnRA.java 2006-06-10 00:01:22 UTC (rev 7494)
@@ -1,58 +1,58 @@
-/*
- * Copyright 2004 The FOray Project.
- * http://www.foray.org
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * This work is in part derived from the following work(s), used with the
- * permission of the licensor:
- * Apache FOP, licensed by the Apache Software Foundation
- *
- */
-
-/* $Id$ */
-
-package org.foray.area;
-
-import org.axsl.areaW.TableArea;
-import org.axsl.common.ConstantsAreaTree;
-import org.axsl.foR.FObj;
-import org.axsl.foR.fo.Table;
-import org.axsl.foR.fo.TableColumn;
-
-public class TableColumnRA extends ContainerRA {
-
- public TableColumnRA(FObj generatedBy, Area parentArea) {
- super(generatedBy, parentArea);
- }
-
- public byte getAreaType() {
- return ConstantsAreaTree.AREATYPE_TABLE_COLUMN_RA;
- }
-
- public int getComputedColumnWidth() {
- TableColumn column = (TableColumn) traitGeneratedBy();
- TableArea tableArea = this.ancestorTableArea();
- Table table = (Table) tableArea.traitGeneratedBy();
- int columnNum = table.getTableColumnIndex(column);
- return tableArea.getResolvedColumnWidth(columnNum);
- }
-
- /**
- * {@inheritDoc}
- */
- public String getAreaName() {
- return "table-column";
- }
-
-}
+///*
+// * Copyright 2004 The FOray Project.
+// * http://www.foray.org
+// *
+// * Licensed under the Apache License, Version 2.0 (the "License");
+// * you may not use this file except in compliance with the License.
+// * You may obtain a copy of the License at
+// *
+// * http://www.apache.org/licenses/LICENSE-2.0
+// *
+// * Unless required by applicable law or agreed to in writing, software
+// * distributed under the License is distributed on an "AS IS" BASIS,
+// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// * See the License for the specific language governing permissions and
+// * limitations under the License.
+// *
+// * This work is in part derived from the following work(s), used with the
+// * permission of the licensor:
+// * Apache FOP, licensed by the Apache Software Foundation
+// *
+// */
+//
+///* $Id$ */
+//
+//package org.foray.area;
+//
+//import org.axsl.areaW.TableArea;
+//import org.axsl.common.ConstantsAreaTree;
+//import org.axsl.foR.FObj;
+//import org.axsl.foR.fo.Table;
+//import org.axsl.foR.fo.TableColumn;
+//
+//public class TableColumnRA extends ContainerRA {
+//
+// public TableColumnRA(FObj generatedBy, Area parentArea) {
+// super(generatedBy, parentArea);
+// }
+//
+// public byte getAreaType() {
+// return ConstantsAreaTree.AREATYPE_TABLE_COLUMN_RA;
+// }
+//
+// public int getComputedColumnWidth() {
+// TableColumn column = (TableColumn) traitGeneratedBy();
+// TableArea tableArea = this.ancestorTableArea();
+// Table table = (Table) tableArea.traitGeneratedBy();
+// int columnNum = table.getTableColumnIndex(column);
+// return tableArea.getResolvedColumnWidth(columnNum);
+// }
+//
+// /**
+// * {@inheritDoc}
+// */
+// public String getAreaName() {
+// return "table-column";
+// }
+//
+//}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|