Update aaf client module
[aaf/authz.git] / authz-gui / src / main / java / com / att / authz / gui / table / TextAndRefCell.java
diff --git a/authz-gui/src/main/java/com/att/authz/gui/table/TextAndRefCell.java b/authz-gui/src/main/java/com/att/authz/gui/table/TextAndRefCell.java
deleted file mode 100644 (file)
index 1c25361..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
- *******************************************************************************/
-package com.att.authz.gui.table;
-
-import static com.att.xgen.html.HTMLGen.A;
-
-import com.att.xgen.html.HTMLGen;
-
-public class TextAndRefCell extends RefCell {
-
-       private String text;
-               
-       public TextAndRefCell(String text, String name, String href, String[] attributes) {
-               super(name, href, attributes);
-               this.text = text;
-       }
-
-       @Override
-       public void write(HTMLGen hgen) {
-               hgen.text(text);
-               hgen.leaf(A,"href="+href).text(name);
-       }
-
-}