Skip to main content
summaryrefslogtreecommitdiffstats
blob: 868fb7aa876da5164fe9ce04eef786d1caabde24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.eclipse.jpt.core.tests.extension.resource;

import org.eclipse.jpt.core.internal.content.java.mappings.JavaAttributeMapping;
import org.eclipse.jpt.core.internal.jdtutility.Attribute;
import org.eclipse.jpt.core.internal.jdtutility.DeclarationAnnotationAdapter;

public class TestAttributeMapping extends AbstractJavaAttributeMapping
{
	public TestAttributeMapping(Attribute attribute) {
		super(attribute);
	}
	
	@Override
	protected DeclarationAnnotationAdapter declarationAnnotationAdapter() {
		// TODO Auto-generated method stub
		return null;
	}

	public String getKey() {
		return "test";
	}
}

Back to the top