dummyprofile.java

来自「portal越来越流行了」· Java 代码 · 共 54 行

JAVA
54
字号
/**
 * 
 */
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 + =
减小字号Ctrl + -
显示快捷键?