KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > ejbcore > ui > logicalview > ejb > shared > IconVisitor


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 package org.netbeans.modules.j2ee.ejbcore.ui.logicalview.ejb.shared;
20 import org.netbeans.modules.j2ee.ejbcore.api.methodcontroller.MethodType;
21 import org.netbeans.modules.j2ee.ejbcore.api.methodcontroller.MethodType.BusinessMethodType;
22 import org.netbeans.modules.j2ee.ejbcore.api.methodcontroller.MethodType.CreateMethodType;
23 import org.netbeans.modules.j2ee.ejbcore.api.methodcontroller.MethodType.FinderMethodType;
24 import org.netbeans.modules.j2ee.ejbcore.api.methodcontroller.MethodType.HomeMethodType;
25
26
27 /**
28  *
29  * @author Chris Webster
30  */

31 public class IconVisitor implements MethodType.MethodTypeVisitor {
32     private String JavaDoc iconURL;
33     private static final String JavaDoc BASE = "org/netbeans/modules/j2ee/ejbcore/resources/"; //NOI18N
34
private static final String JavaDoc CREATE = BASE+"CreateMethodIcon.gif"; //NOI18N
35
private static final String JavaDoc BUSINESS = BASE+"BusinessMethodIcon.gif"; //NOI18N
36
private static final String JavaDoc HOME = BASE+"HomeMethodIcon.gif"; //NOI18N
37
private static final String JavaDoc FINDER = BASE+"FinderMethodIcon.gif"; //NOI18N
38

39     public String JavaDoc getIconUrl(MethodType methodType) {
40         methodType.accept(this);
41         return iconURL;
42     }
43     
44     public void visit(BusinessMethodType bmt) {
45         iconURL = BUSINESS;
46     }
47        
48     public void visit(CreateMethodType cmt) {
49         iconURL = CREATE;
50     }
51     
52     public void visit(HomeMethodType hmt) {
53         iconURL = HOME;
54     }
55     
56     public void visit(FinderMethodType fmt) {
57         iconURL = FINDER;
58     }
59 }
60
Popular Tags