Skip to content

Commit 97f2cc2

Browse files
authored
Merge pull request #2403 from ControlSystemStudio/core_pv_doc
PVFactory mentioned Eclipse extension point but now uses SPI
2 parents d704475 + 861fc35 commit 97f2cc2

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

core/pv/src/main/java/org/phoebus/pv/PVFactory.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2017 Oak Ridge National Laboratory.
2+
* Copyright (c) 2017-2022 Oak Ridge National Laboratory.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at
@@ -14,7 +14,7 @@
1414
*
1515
* <p>Each type of {@link PV} provides a factory
1616
* for creating that type of PV and registers it
17-
* with the {@link PVPool}.
17+
* with the {@link PVPool} via Java SPI.
1818
*
1919
* <p>A full PV name can have the form <code>type://name&lt;type&gt;(params)</code>,
2020
* for example <code>loc://x(42.3)</code>
@@ -28,12 +28,8 @@
2828
*
2929
* @author Kay Kasemir
3030
*/
31-
@SuppressWarnings("nls")
3231
public interface PVFactory
3332
{
34-
/** ID of the Eclipse extension point for providing implementations */
35-
final public static String EXTENSION_POINT = "org.csstudio.vtype.pv.pvfactory";
36-
3733
/** @return Type prefix that this PV factory supports */
3834
public String getType();
3935

0 commit comments

Comments
 (0)