/** * Return a string representation of the resource in the form 'resource:[path]'. * * @return the string value */ public String toString() { if (null != m_directive) { if (m_directive.isLocal()) { return toString("project"); } } return toString("resource"); }
boolean isLocal() { if (null != m_directive) { return m_directive.isLocal(); } return false; }