Update of /cvsroot/nice/eclipse/src/nice/eclipse/core/element
In directory sc8-pr-cvs1:/tmp/cvs-serv919/src/nice/eclipse/core/element
Added Files:
INiceElement.nice NiceFile.nice _element.nice
Log Message:
initial import
--- NEW FILE: INiceElement.nice ---
/**************************************************************************/
/* Nice Eclipse-Plugin */
/* (c) Alex Greif 2003 */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* */
/**************************************************************************/
package nice.eclipse.core.element;
interface INiceElement {
public IResource getUnderlyingResource();
}
--- NEW FILE: NiceFile.nice ---
/**************************************************************************/
/* Nice Eclipse-Plugin */
/* (c) Alex Greif 2003 */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* */
/**************************************************************************/
package nice.eclipse.core.element;
class NiceFile implements INiceElement {
IFile underlyingFile;
getUnderlyingResource() = underlyingFile;
}
--- NEW FILE: _element.nice ---
/**************************************************************************/
/* Nice Eclipse-Plugin */
/* (c) Alex Greif 2003 */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* */
/**************************************************************************/
package nice.eclipse.core.element;
import org.eclipse.core.resources.*;
let String NICE_FILE_EXTENSION = "nice";
|