コード例 #1
0
 /**
  * Returns <code>true</code> if the passed value corresponds to a name space for <code>Editor
  * </code>.
  *
  * @param value The value to handle.
  * @return See above.
  */
 boolean isEditorFile(String value) {
   if (EditorUtil.isEditorFile(value)) return true;
   return (FileAnnotationData.EDITOR_EXPERIMENT_NS.equals(value)
       || FileAnnotationData.EDITOR_PROTOCOL_NS.equals(value));
 }