📄 dummyprofile.java
字号:
/**
*
*/
package org.apache.pluto.internal.impl;
import java.util.Set;
import javax.ccpp.Attribute;
import javax.ccpp.Component;
import javax.ccpp.Profile;
import javax.ccpp.ProfileDescription;
/**
* A dummy replace for a real CCPP Implementation (TBD)
*/
public class DummyProfile implements Profile {
/* (non-Javadoc)
* @see javax.ccpp.Profile#getAttribute(java.lang.String)
*/
public Attribute getAttribute(String arg0) {
return null;
}
/* (non-Javadoc)
* @see javax.ccpp.Profile#getAttributes()
*/
public Set getAttributes() {
return null;
}
/* (non-Javadoc)
* @see javax.ccpp.Profile#getComponent(java.lang.String)
*/
public Component getComponent(String arg0) {
return null;
}
/* (non-Javadoc)
* @see javax.ccpp.Profile#getComponents()
*/
public Set getComponents() {
return null;
}
/* (non-Javadoc)
* @see javax.ccpp.Profile#getDescription()
*/
public ProfileDescription getDescription() {
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -