Author: paperwing
Date: 2012-02-12 18:33:55 -0800 (Sun, 12 Feb 2012)
New Revision: 28243
Modified:
csplugins/trunk/toronto/yuedong/multi_renderer/api/presentation-api/src/main/java/org/cytoscape/view/presentation/RenderingEngineFactoryManager.java
Log:
Added "final" modifier to RenderingEngineFactory object parameter
Modified:
csplugins/trunk/toronto/yuedong/multi_renderer/api/presentation-api/src/main/java/org/cytoscape/view/presentation/RenderingEngineFactoryManager.java
===================================================================
---
csplugins/trunk/toronto/yuedong/multi_renderer/api/presentation-api/src/main/java/org/cytoscape/view/presentation/RenderingEngineFactoryManager.java
2012-02-13 02:31:35 UTC (rev 28242)
+++
csplugins/trunk/toronto/yuedong/multi_renderer/api/presentation-api/src/main/java/org/cytoscape/view/presentation/RenderingEngineFactoryManager.java
2012-02-13 02:33:55 UTC (rev 28243)
@@ -24,7 +24,7 @@
* @param rendererID The ID of the renderer, which is the renderer name.
* @param rendererType The type of the renderer, such as bird's eye
view or main, via the {@link RenderingEngineFactoryType} enumeration.
*/
- public void addRenderingEngineFactory(RenderingEngineFactory<?>
renderingEngineFactory, String rendererID, RenderingEngineFactoryType
rendererType);
+ public void addRenderingEngineFactory(final RenderingEngineFactory<?>
renderingEngineFactory, String rendererID, RenderingEngineFactoryType
rendererType);
/**
* If one exists, returns the {@link RenderingEngineFactory} associated
with the given renderer ID and renderer type. Otherwise,
@@ -41,7 +41,7 @@
*
* @param renderingEngineFactory The {@link RenderingEngineFactory} to
be removed.
*/
- public void removeRenderingEngineFactory(RenderingEngineFactory<?>
renderingEngineFactory);
+ public void removeRenderingEngineFactory(final
RenderingEngineFactory<?> renderingEngineFactory);
/**
* Removes the {@link RenderingEngineFactory} associated with the given
renderer ID and of the given renderer type, such as bird's eye view.
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.