aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs175/pr430243/PolicyManager.java
blob: f6e508f336e37cdb1be8f4aab84da36d57cbbdcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.test2;

import com.test2.PolicyProviderConstants.OpenInPolicyValues;

public class PolicyManager {
	public static OpenInPolicyValues getOpenInPolicy (boolean showDialog)
	{
		OpenInPolicyValues value = PolicyProviderInterface.getOpenInPolicy();
		
		return value;
	}
	
	public static void main(String[] args) {
		new PolicyManager().foo();
	}
	
	public String foo() {
		return "";
	}
}