KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > aspectj > tools > ajbrowser > BrowserUIAdapter


1
2
3 /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
4  *
5  * This file is part of the IDE support for the AspectJ(tm)
6  * programming language; see http://aspectj.org
7  *
8  * The contents of this file are subject to the Mozilla Public License
9  * Version 1.1 (the "License"); you may not use this file except in
10  * compliance with the License. You may obtain a copy of the License at
11  * either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
12  *
13  * Software distributed under the License is distributed on an "AS IS" basis,
14  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
15  * for the specific language governing rights and limitations under the
16  * License.
17  *
18  * The Original Code is AspectJ.
19  *
20  * The Initial Developer of the Original Code is Xerox Corporation. Portions
21  * created by Xerox Corporation are Copyright (C) 1999-2002 Xerox Corporation.
22  * All Rights Reserved.
23  *
24  * Contributor(s):
25  */

26  
27 package org.aspectj.tools.ajbrowser;
28
29 import org.aspectj.ajde.ui.*;
30
31 public class BrowserUIAdapter implements IdeUIAdapter {
32     
33     public void displayStatusInformation(String JavaDoc message) {
34         BrowserManager.getDefault().setStatusInformation(message);
35     }
36 }
37
Popular Tags