Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 951e101d8c58e65f293f7613ecb923eaddd820b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/***************************************************************************************************
 * Copyright (c) 2005 Eteration A.S. and others. All rights reserved. This program and the
 * accompanying materials are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 * 
 * Contributors: Eteration A.S. - initial API and implementation
 **************************************************************************************************/
package org.eclipse.jst.j2ee.xdoclet.runtime.internal.tasks;

import org.eclipse.jst.j2ee.xdoclet.runtime.internal.XDocletTaskProviderImpl;

public class HomeInterfaceEjbdocletTaskProvider extends XDocletTaskProviderImpl {

	public static String NAMESPACE = "ejbdoclet.homeinterface.";

	public String getTask() {
		StringBuffer buffer = new StringBuffer(256);
		buffer.append("<homeinterface ");
		buildAttributes(buffer);
		buffer.append(" />");
		return buffer.toString();
	}

	public String getNamespace() {
		return NAMESPACE;
	}
}

Back to the top