KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > tasklist > client > SuggestionAgent


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
20 package org.netbeans.modules.tasklist.client;
21
22 import org.openide.text.Line;
23
24 import java.awt.*;
25 import org.netbeans.modules.tasklist.client.SuggestionPriority;
26
27 /**
28  * Agent allows provider to update suggestion.
29  *
30  * @since 1.11
31  * @author Petr Kuzel
32  */

33 public final class SuggestionAgent {
34
35     private final Suggestion suggestion;
36
37     /** Only framework may call this other will get IllegalStateException. */
38     public SuggestionAgent(Suggestion suggestion) {
39         if (suggestion.agent != null) {
40             throw new IllegalStateException JavaDoc();
41         }
42         suggestion.agent = this;
43         this.suggestion = suggestion;
44     }
45
46     public Suggestion getSuggestion() {
47         return suggestion;
48     }
49
50     public void setAction(SuggestionPerformer action) {
51         suggestion.setAction(action);
52     }
53
54     public void setSummary(String JavaDoc summary) {
55         suggestion.setSummary(summary);
56     }
57
58     public void setDetails(String JavaDoc details) {
59         suggestion.setDetails(details);
60     }
61
62     public void setPriority(SuggestionPriority prio) {
63         suggestion.setPriority(prio);
64     }
65
66     // TODO add line to suggestion constructor
67
/** @deprecated line is live object no need to chaneg its instances */
68     public void setLine(Line line) {
69         suggestion.setLine(line);
70     }
71
72     public void setIcon(Image image) {
73         suggestion.setIcon(image);
74     }
75
76     /**
77      * This suggestion is not managed by provider anymore.
78      * It should be forgoten (all string references removed)
79      * because its validity status cannot be reverted to back true.
80      */

81     public void invalidate() {
82         suggestion.invalidate();
83     }
84 }
85
Popular Tags