📄 preprocessednature.java
字号:
/**
* Copyright (c) 2003-2005 Craig Setera
* All Rights Reserved.
* Licensed under the Eclipse Public License - v 1.0
* For more information see http://www.eclipse.org/legal/epl-v10.html
*/
package eclipseme.core.internal.preprocessor;
import org.eclipse.core.resources.IProjectNature;
import org.eclipse.core.runtime.CoreException;
import eclipseme.core.nature.AbstractNature;
/**
* Project nature for J2ME projects that contain preprocessed resources.
* <p>
* <b>Note:</b> This class/interface is part of an interim API that is still under development and expected to
* change before reaching stability. It is being made available at this early stage to solicit feedback
* from pioneering adopters on the understanding that any code that uses this API will almost
* certainly be broken as the API evolves.
* </p>
* Copyright (c) 2003-2005 Craig Setera<br>
* All Rights Reserved.<br>
* Licensed under the Eclipse Public License - v 1.0<p/>
* <br>
* $Revision: 1.2 $
* <br>
* $Date: 2006/11/12 01:11:00 $
* <br>
* @author Craig Setera
* @see IProjectNature
*/
public class PreprocessedNature extends AbstractNature {
/**
* @see IProjectNature#configure
*/
public void configure() throws CoreException {
// Do nothing. This nature is no longer really necessary,
// but it is kept around to aid in migration
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -