KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xml > refactoring > ErrorItem


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-2007 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 package org.netbeans.modules.xml.refactoring;
20
21 import org.netbeans.modules.xml.xam.Component;
22 import org.netbeans.modules.xml.xam.Model;
23 import org.openide.filesystems.FileObject;
24
25
26 public class ErrorItem {
27
28     public enum Level { WARNING, FATAL };
29
30     private Object JavaDoc source;
31     private String JavaDoc message;
32     private Level level = Level.WARNING;
33
34     public ErrorItem(Object JavaDoc source, String JavaDoc errorMessage) {
35         this(source, errorMessage, Level.WARNING);
36     }
37
38     public ErrorItem(Object JavaDoc source, String JavaDoc errorMessage, Level level) {
39         this.source = source;
40         this.message = errorMessage;
41         this.level = level;
42     }
43     
44     /**
45      * Returns the component on which the error happen during usage search,
46      * or null if the error does not associated with any particular component.
47      */

48     public Component getComponent() {
49         if (source instanceof Component) {
50             return (Component) source;
51         }
52         return null;
53     }
54     
55     public Model getModel() {
56         if (source instanceof Model) {
57             return (Model) source;
58         }
59         return null;
60     }
61
62     public FileObject getFile() {
63         if (source instanceof FileObject) {
64             return (FileObject) source;
65         }
66         return null;
67     }
68     
69     public String JavaDoc getMessage() {
70         return message;
71     }
72     
73     public Level getLevel(){
74         return level;
75     }
76     
77     public void setLevel(Level level){
78         this.level= level;
79     }
80 }
Popular Tags