Update aaf client module
[aaf/authz.git] / authz-gui / src / main / java / com / att / authz / gui / table / AbsCell.java
diff --git a/authz-gui/src/main/java/com/att/authz/gui/table/AbsCell.java b/authz-gui/src/main/java/com/att/authz/gui/table/AbsCell.java
deleted file mode 100644 (file)
index eb91c22..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
- *******************************************************************************/
-package com.att.authz.gui.table;
-
-import com.att.xgen.html.HTMLGen;
-
-public abstract class AbsCell {
-       private static final String[] NONE = new String[0];
-       protected static final String[] CENTER = new String[]{"class=center"};
-
-       /**
-        * Write Cell Data with HTMLGen generator
-        * @param hgen
-        */
-       public abstract void write(HTMLGen hgen);
-       
-       public final static AbsCell Null = new AbsCell() {
-               @Override
-               public void write(final HTMLGen hgen) {
-               }
-       };
-       
-       public String[] attrs() {
-               return NONE;
-       }
-}