summaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/src/org/aspectj/weaver/AnnotationNameValuePair.java
blob: 17824ac6928958966c0c41e0a3ffa3fe3fd7006b (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* *******************************************************************
 * Copyright (c) 2006 Contributors
 * 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 
 * http://www.eclipse.org/legal/epl-v10.html 
 *  
 * Contributors: 
 *     Andy Clement IBM     initial implementation 
 * ******************************************************************/
package org.aspectj.weaver;

public class AnnotationNameValuePair {

	private String name;

	private AnnotationValue val;

	public AnnotationNameValuePair(String name, AnnotationValue val) {
		this.name = name;
		this.val = val;
	}

	public String getName() {
		return name;
	}

	public AnnotationValue getValue() {
		return val;
	}

	public String toString() {
		StringBuffer sb = new StringBuffer();
		sb.append(name + "=" + val.toString());
		return sb.toString();
	}

	public String stringify() {
		StringBuffer sb = new StringBuffer();
		if (!name.equals("value")) {
			sb.append(name + "=");
		}
		sb.append(val.stringify());
		return sb.toString();
	}
}