Lines Matching refs:identifier
131 * not modify or invoke any methods in these identifier objects other
136 protected Object identifier;
319 * Sets the <code>TableColumn</code>'s identifier to
325 * @param identifier an identifier for this column
329 * description: A unique identifier for this column.
331 public void setIdentifier(Object identifier) {
332 Object old = this.identifier;
333 this.identifier = identifier;
334 firePropertyChange("identifier", old, identifier);
339 * Returns the <code>identifier</code> object for this column.
342 * If the <code>identifier</code> is <code>null</code>,
346 * @return the <code>identifier</code> property
350 return (identifier != null) ? identifier : getHeaderValue();