Java Doc for CorePlugin.java in  » GIS » udig-1.1 » net » refractions » udig » core » internal » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » udig 1.1 » net.refractions.udig.core.internal 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.refractions.udig.core.internal.CorePlugin

CorePlugin
public class CorePlugin extends Plugin (Code)
PlugIn for net.refractions.udig.core, used by utility classes to access workbench log.
author:
   jones
since:
   0.3


Field Summary
final public static  StringID
    
final public static  URLStreamHandlerRELAXED_HANDLER
     A url stream handler that delegates to the default one but if it doesn't work then it returns null as the stream.

Constructor Summary
public  CorePlugin()
    

Method Summary
public static  MutablePicoContainergetBlackBoard()
     This is intended to return the top level Pico Container to use for blackBoarding.

For most applications, a sub container is required.

public static  CorePlugingetDefault()
    
public static  booleanisDebugging(String trace)
     Performs the Platform.getDebugOption true check on the provided trace

Note: ProjectUIPlugin.getDefault().isDebugging() must also be on.

public static  booleanisDeveloping()
    
public static  voidlog(String message2, Throwable e)
     Writes an info log in the plugin's log.
public  voidstart(BundleContext context)
    
public static  List<URL>stringsToURLs(String string)
    
public static  List<URL>stringsToURLs(String[] strings)
     Converts each element of an array from a String to a URL.
public static  voidtrace(String message, Throwable e)
    

Field Detail
ID
final public static String ID(Code)
Plugin ID field



RELAXED_HANDLER
final public static URLStreamHandler RELAXED_HANDLER(Code)
A url stream handler that delegates to the default one but if it doesn't work then it returns null as the stream.




Constructor Detail
CorePlugin
public CorePlugin()(Code)
creates a plugin instance




Method Detail
getBlackBoard
public static MutablePicoContainer getBlackBoard()(Code)
This is intended to return the top level Pico Container to use for blackBoarding.

For most applications, a sub container is required. I recommend the following code be inserted into your main plugin class. private static MutablePicoContainer myContainer = null; /** Gets the container for my plugin. Make it 'public' if you want to share ... protected otherwise. / public static MutablePicoContainer getMyContainer(){ if(myContainer == null){ // XXXPlugin is the name of the Plugin class synchronized(XXXPlugin.class){ // check so see that you were not queued for double creation if(myContainer == null){ // This line does it ... careful to only call it once! myContainer = CorePlugin.getBlackBoard().makeChildContainer(); } } } return myContainer; }

NOTE:
Please check to ensure the child you want is not already created (important for two plugins sharing one container).




getDefault
public static CorePlugin getDefault()(Code)
Returns the system created plugin object the plugin object



isDebugging
public static boolean isDebugging(String trace)(Code)
Performs the Platform.getDebugOption true check on the provided trace

Note: ProjectUIPlugin.getDefault().isDebugging() must also be on.

  • Trace.RENDER - trace rendering progress


Parameters:
  trace - currently only RENDER is defined



isDeveloping
public static boolean isDeveloping()(Code)



log
public static void log(String message2, Throwable e)(Code)
Writes an info log in the plugin's log.

This should be used for user level messages.




start
public void start(BundleContext context) throws Exception(Code)

See Also:   org.osgi.framework.BundleActivator.start(org.osgi.framework.BundleContext)



stringsToURLs
public static List<URL> stringsToURLs(String string)(Code)
Takes a string, and splits it on '\n' and calls stringsToURLs(String[])



stringsToURLs
public static List<URL> stringsToURLs(String[] strings)(Code)
Converts each element of an array from a String to a URL. If the String is not a valid URL, it attempts to load it as a File and then convert it. If that fails, it ignores it. It will not insert a null into the returning List, so the size of the List may be smaller than the size of strings
Parameters:
  strings - an array of strings, each to be converted to a URL a List of URLs, in the same order as the array



trace
public static void trace(String message, Throwable e)(Code)
Messages that only engage if getDefault().isDebugging()

It is much prefered to do this:


 private static final String RENDERING = "net.refractions.udig.project/render/trace";
 if (ProjectUIPlugin.getDefault().isDebugging() && "true".equalsIgnoreCase(RENDERING)) {
 System.out.println("your message here");
 }



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.