2026-03-17 13:31:18 -07:00

52 lines
1.1 KiB
Java

/*
* Decompiled with CFR 0.152.
*/
package com.tridium.collection;
import javax.baja.collection.Column;
import javax.baja.sys.BFacets;
import javax.baja.sys.Context;
import javax.baja.sys.Type;
public class GenericColumn
implements Column {
private String name;
private String dispName;
private Type type;
private int flags;
private BFacets facets;
public String getDisplayName(Context context) {
return this.dispName;
}
public String getName() {
return this.name;
}
public Type getType() {
return this.type;
}
public int getFlags() {
return this.flags;
}
public BFacets getFacets() {
return this.facets;
}
public GenericColumn(String string, String string2, Type type) {
this(string, string2, type, 0, BFacets.NULL);
}
public GenericColumn(String string, String string2, Type type, int n, BFacets bFacets) {
this.name = string;
this.dispName = string2;
this.type = type;
this.flags = n;
this.facets = bFacets;
}
}