Skip to content
Snippets Groups Projects
Commit 4bad8480 authored by Lukas Ladenberger's avatar Lukas Ladenberger
Browse files

removed unused code

parent 9eb19b9b
No related branches found
No related tags found
No related merge requests found
...@@ -812,19 +812,6 @@ public abstract class BControl implements IAdaptable, Cloneable { ...@@ -812,19 +812,6 @@ public abstract class BControl implements IAdaptable, Cloneable {
} }
// protected void initAttribute(AbstractAttribute atr) {
// AbstractAttribute matr = getAttributes().get(atr.getID());
// if (matr != null) {
// matr.setEditable(atr.isEditable());
// matr.setGroup(atr.getGroup());
// matr.setShow(atr.show());
// matr.setDefaultValue(atr.getValue());
// } else {
// atr.setDefaultValue(atr.getValue());
// getAttributes().put(atr.getID(), atr);
// }
// }
private Object reflectiveGet(String className) { private Object reflectiveGet(String className) {
Object newInstance = null; Object newInstance = null;
try { try {
...@@ -840,34 +827,6 @@ public abstract class BControl implements IAdaptable, Cloneable { ...@@ -840,34 +827,6 @@ public abstract class BControl implements IAdaptable, Cloneable {
return newInstance; return newInstance;
} }
// protected void initAttribute(AbstractAttribute atr, AbstractAttribute
// group) {
// initAttribute(atr, group.getClass().getName());
// }
//
// protected void initAttribute(AbstractAttribute atr, String group) {
// atr.setGroup(group);
// initAttribute(atr);
// }
//
// protected void initAttribute(AbstractAttribute atr, boolean editable,
// boolean show) {
// atr.setEditable(editable);
// atr.setShow(show);
// initAttribute(atr);
// }
//
// protected void initAttribute(AbstractAttribute atr, boolean editable) {
// atr.setEditable(editable);
// initAttribute(atr);
// }
//
// protected void initAttribute(AbstractAttribute atr, String group,
// boolean editable) {
// atr.setEditable(editable);
// initAttribute(atr, group);
// }
public boolean canHaveChildren() { public boolean canHaveChildren() {
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment