mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +02:00
[174292] [api] Make discovery packages internal
org.eclipse.rse.internal.discovery -> org.eclipse.rse.internal.discovery org.eclipse.tm.internal.discovery.engine -> org.eclipse.tm.internal.discovery.engine org.eclipse.tm.internal.discovery.model.impl -> org.eclipse.tm.internal.discovery.model.impl org.eclipse.tm.internal.discovery.model.util -> org.eclipse.tm.internal.discovery.model.util org.eclipse.tm.internal.discovery.model.provider -> org.eclipse.tm.internal.discovery.model.provider org.eclipse.tm.internal.discovery.protocol.dnssd -> org.eclipse.tm.internal.discovery.protocol.dnssd org.eclipse.tm.internal.discovery.transport.udp -> org.eclipse.tm.internal.discovery.transport.udp org.eclipse.tm.internal.discovery.view -> org.eclipse.tm.internal.discovery.view org.eclipse.tm.internal.discovery.wizard -> org.eclipse.tm.internal.discovery.wizard
This commit is contained in:
parent
589c850540
commit
bfe80f048c
79 changed files with 262 additions and 288 deletions
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
|
||||
<accessrules>
|
||||
<accessrule kind="discouraged" pattern="**/internal/**"/>
|
||||
</accessrules>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.discovery;singleton:=true
|
||||
Bundle-Version: 1.0.2.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.discovery.Activator
|
||||
Bundle-Activator: org.eclipse.rse.internal.discovery.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
|
@ -15,3 +15,4 @@ Require-Bundle: org.eclipse.ui,
|
|||
Eclipse-LazyStart: true
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||
Export-Package: org.eclipse.rse.internal.discovery;x-internal:=true
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
<?eclipse version="3.2"?>
|
||||
|
||||
<!--
|
||||
Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
This program and the accompanying materials are made available under the terms
|
||||
of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
-->
|
||||
|
||||
<plugin>
|
||||
|
@ -18,7 +18,7 @@ Contributors:
|
|||
<newConnectionWizard
|
||||
canFinishEarly="false"
|
||||
categoryId="org.eclipse.rse.ui.wizards.newconnection.default.category"
|
||||
class="org.eclipse.rse.discovery.ServiceDiscoveryWizard"
|
||||
class="org.eclipse.rse.internal.discovery.ServiceDiscoveryWizard"
|
||||
hasPages="true"
|
||||
id="org.eclipse.rse.discovery.ServiceDiscoveryWizard"
|
||||
name="%NewConnectionWizard.discovery.name"
|
||||
|
@ -34,7 +34,7 @@ Contributors:
|
|||
iconLive=""/>
|
||||
</extension>
|
||||
|
||||
<extension
|
||||
<!-- extension
|
||||
point="org.eclipse.rse.ui.subsystemConfigurations">
|
||||
<configuration
|
||||
systemTypeIds="org.eclipse.rse.systemtype.discovery"
|
||||
|
@ -47,7 +47,7 @@ Contributors:
|
|||
priority="100"
|
||||
id="Discovery">
|
||||
</configuration>
|
||||
</extension>
|
||||
</extension -->
|
||||
|
||||
</plugin>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.discovery;
|
||||
package org.eclipse.rse.internal.discovery;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
|
@ -1,19 +1,19 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.discovery;
|
||||
package org.eclipse.rse.internal.discovery;
|
||||
|
||||
import org.eclipse.osgi.util.NLS;
|
||||
|
||||
public class Messages extends NLS {
|
||||
private static final String BUNDLE_NAME = "org.eclipse.rse.discovery.messages"; //$NON-NLS-1$
|
||||
private static final String BUNDLE_NAME = "org.eclipse.rse.internal.discovery.messages"; //$NON-NLS-1$
|
||||
|
||||
public static String ServiceDiscoveryWizard_DiscoveryPropertySet;
|
||||
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.discovery;
|
||||
package org.eclipse.rse.internal.discovery;
|
||||
|
||||
import org.eclipse.rse.core.filters.ISystemFilterPool;
|
||||
import org.eclipse.rse.core.filters.ISystemFilterPoolManager;
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.discovery;
|
||||
package org.eclipse.rse.internal.discovery;
|
||||
|
||||
import java.util.Enumeration;
|
||||
import java.util.Iterator;
|
||||
|
@ -24,8 +24,8 @@ import org.eclipse.rse.ui.actions.SystemRefreshAllAction;
|
|||
import org.eclipse.tm.discovery.model.Pair;
|
||||
import org.eclipse.tm.discovery.model.Service;
|
||||
import org.eclipse.tm.discovery.model.ServiceType;
|
||||
import org.eclipse.tm.discovery.wizard.ServiceDiscoveryWizardDisplayPage;
|
||||
import org.eclipse.tm.discovery.wizard.ServiceDiscoveryWizardMainPage;
|
||||
import org.eclipse.tm.internal.discovery.wizard.ServiceDiscoveryWizardDisplayPage;
|
||||
import org.eclipse.tm.internal.discovery.wizard.ServiceDiscoveryWizardMainPage;
|
||||
|
||||
/**
|
||||
* Service Discovery Wizard
|
|
@ -1,15 +1,15 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
# Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
# Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
ServiceDiscoveryWizard_DiscoveryPropertySet=Discovery
|
||||
ServiceDiscoveryWizard_Port=port
|
||||
ServiceDiscoveryWizard_SavingMessage=Saving RSE model
|
||||
ServiceDiscoveryWizard_StatusId=org.eclipse.tm.discovery.wizard
|
||||
ServiceDiscoveryWizard_StatusId=org.eclipse.tm.internal.discovery.wizard
|
||||
ServiceDiscoveryWizard_StatusMessage=RSE model saved
|
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
|
||||
<accessrules>
|
||||
<accessrule kind="discouraged" pattern="**/internal/**"/>
|
||||
</accessrules>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -3,17 +3,17 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.tm.discovery.engine;singleton:=true
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-Activator: org.eclipse.tm.discovery.engine.Activator
|
||||
Bundle-Activator: org.eclipse.tm.internal.discovery.engine.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.emf.ecore.xmi,
|
||||
org.eclipse.tm.discovery.model
|
||||
Eclipse-LazyStart: true
|
||||
Export-Package: org.eclipse.tm.discovery.engine,
|
||||
org.eclipse.tm.discovery.protocol,
|
||||
org.eclipse.tm.discovery.transport
|
||||
Export-Package: org.eclipse.tm.discovery.protocol,
|
||||
org.eclipse.tm.discovery.transport,
|
||||
org.eclipse.tm.internal.discovery.engine;x-friends:="org.eclipse.tm.internal.discovery.wizard"
|
||||
Import-Package: org.eclipse.tm.discovery.model,
|
||||
org.eclipse.tm.discovery.model.util
|
||||
org.eclipse.tm.internal.discovery.model.util
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||
|
|
|
@ -1,5 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.2"?>
|
||||
|
||||
<!--
|
||||
Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
This program and the accompanying materials are made available under the terms
|
||||
of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
-->
|
||||
|
||||
<plugin>
|
||||
<extension-point id="discoveryTransport" name="discoveryTransport" schema="schema/discoveryTransport.exsd"/>
|
||||
<extension-point id="discoveryProtocol" name="discoveryProtocol" schema="schema/discoveryProtocol.exsd"/>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.protocol;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.transport;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.engine;
|
||||
package org.eclipse.tm.internal.discovery.engine;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
|
@ -1,20 +1,20 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.wizard;
|
||||
package org.eclipse.tm.internal.discovery.engine;
|
||||
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
public class Messages {
|
||||
private static final String BUNDLE_NAME = "org.eclipse.tm.discovery.wizard.messages"; //$NON-NLS-1$
|
||||
private static final String BUNDLE_NAME = "org.eclipse.tm.internal.discovery.engine.messages"; //$NON-NLS-1$
|
||||
|
||||
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
|
||||
.getBundle(BUNDLE_NAME);
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.engine;
|
||||
package org.eclipse.tm.internal.discovery.engine;
|
||||
|
||||
import org.eclipse.emf.common.util.URI;
|
||||
import org.eclipse.emf.common.util.WrappedException;
|
||||
|
@ -16,9 +16,9 @@ import org.eclipse.emf.ecore.resource.Resource;
|
|||
import org.eclipse.emf.ecore.resource.ResourceSet;
|
||||
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
|
||||
import org.eclipse.tm.discovery.model.ModelPackage;
|
||||
import org.eclipse.tm.discovery.model.util.ModelResourceFactoryImpl;
|
||||
import org.eclipse.tm.discovery.protocol.IProtocol;
|
||||
import org.eclipse.tm.discovery.transport.ITransport;
|
||||
import org.eclipse.tm.internal.discovery.model.util.ModelResourceFactoryImpl;
|
||||
|
||||
/**
|
||||
* Engine for service discovery.
|
|
@ -1,11 +1,11 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
# Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
# Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
ServiceDiscoveryEngine.DiscoveryModelFileURI=discoveryModel.xml
|
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
|
||||
<accessrules>
|
||||
<accessrule kind="discouraged" pattern="**/internal/**"/>
|
||||
</accessrules>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -4,10 +4,10 @@ Bundle-Name: %pluginName
|
|||
Bundle-SymbolicName: org.eclipse.tm.discovery.model.edit;singleton:=true
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-ClassPath: .
|
||||
Bundle-Activator: org.eclipse.tm.discovery.model.provider.DiscoveryModelEditPlugin$Implementation
|
||||
Bundle-Activator: org.eclipse.tm.internal.discovery.model.provider.DiscoveryModelEditPlugin$Implementation
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
Export-Package: org.eclipse.tm.discovery.model.provider
|
||||
Export-Package: org.eclipse.tm.internal.discovery.model.provider;x-friends:="org.eclipse.tm.internal.discovery.wizard"
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.emf.edit;visibility:=reexport,
|
||||
org.eclipse.tm.discovery.model
|
||||
|
|
|
@ -24,37 +24,8 @@
|
|||
pluginName = TM Service Discovery Edit Support
|
||||
providerName = Eclipse.org
|
||||
|
||||
_UI_CreateChild_text = {0}
|
||||
_UI_CreateChild_text2 = {1} {0}
|
||||
_UI_CreateChild_text3 = {1}
|
||||
_UI_CreateChild_tooltip = Create New {0} Under {1} Feature
|
||||
_UI_CreateChild_description = Create a new child of type {0} for the {1} feature of the selected {2}.
|
||||
_UI_CreateSibling_description = Create a new sibling of type {0} for the selected {2}, under the {1} feature of their parent.
|
||||
|
||||
_UI_PropertyDescriptor_description = The {0} of the {1}
|
||||
|
||||
_UI_Unknown_type = Object
|
||||
|
||||
_UI_Unknown_datatype= Value
|
||||
|
||||
_UI_SDDevice_sDServiceType_feature = SD Service Type
|
||||
_UI_SDNetwork_sDDevice_feature = SD Device
|
||||
_UI_SDService_sDPair_feature = SD Pair
|
||||
_UI_SDServiceType_sDService_feature = SD Service
|
||||
_UI_Device_type = Device
|
||||
_UI_Network_type = Network
|
||||
_UI_Pair_type = Pair
|
||||
_UI_Service_type = Service
|
||||
_UI_ServiceType_type = Service Type
|
||||
_UI_Device_serviceType_feature = Service Type
|
||||
_UI_Device_address_feature = Address
|
||||
_UI_Device_name_feature = Name
|
||||
_UI_Network_device_feature = Device
|
||||
_UI_Pair_key_feature = Key
|
||||
_UI_Pair_value_feature = Value
|
||||
_UI_Service_pair_feature = Pair
|
||||
_UI_Service_name_feature = Name
|
||||
_UI_ServiceType_service_feature = Service
|
||||
_UI_ServiceType_name_feature = Name
|
||||
_UI_Unknown_feature = Unspecified
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
<?eclipse version="3.0"?>
|
||||
|
||||
<!--
|
||||
Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
This program and the accompanying materials are made available under the terms
|
||||
of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.provider;
|
||||
package org.eclipse.tm.internal.discovery.model.provider;
|
||||
|
||||
|
||||
import java.util.Collection;
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.provider;
|
||||
package org.eclipse.tm.internal.discovery.model.provider;
|
||||
|
||||
import org.eclipse.emf.common.EMFPlugin;
|
||||
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.provider;
|
||||
package org.eclipse.tm.internal.discovery.model.provider;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
|
@ -28,7 +28,7 @@ import org.eclipse.emf.edit.provider.INotifyChangedListener;
|
|||
import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
|
||||
import org.eclipse.emf.edit.provider.ITableItemLabelProvider;
|
||||
import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
|
||||
import org.eclipse.tm.discovery.model.util.ModelAdapterFactory;
|
||||
import org.eclipse.tm.internal.discovery.model.util.ModelAdapterFactory;
|
||||
|
||||
/**
|
||||
* This is the factory that is used to provide the interfaces needed to support Viewers.
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.provider;
|
||||
package org.eclipse.tm.internal.discovery.model.provider;
|
||||
|
||||
|
||||
import java.util.Collection;
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.provider;
|
||||
package org.eclipse.tm.internal.discovery.model.provider;
|
||||
|
||||
|
||||
import java.util.Collection;
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.provider;
|
||||
package org.eclipse.tm.internal.discovery.model.provider;
|
||||
|
||||
|
||||
import java.util.Collection;
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.provider;
|
||||
package org.eclipse.tm.internal.discovery.model.provider;
|
||||
|
||||
|
||||
import java.util.Collection;
|
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
|
||||
<accessrules>
|
||||
<accessrule kind="discouraged" pattern="**/internal/**"/>
|
||||
</accessrules>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -11,7 +11,7 @@ Require-Bundle: org.eclipse.ui,
|
|||
org.eclipse.emf.ecore.xmi;bundle-version="[2.2.0,3.0.0)"
|
||||
Eclipse-LazyStart: true
|
||||
Export-Package: org.eclipse.tm.discovery.model,
|
||||
org.eclipse.tm.discovery.model.impl,
|
||||
org.eclipse.tm.discovery.model.util
|
||||
org.eclipse.tm.internal.discovery.model.impl;x-internal:=true,
|
||||
org.eclipse.tm.internal.discovery.model.util;x-internal:=true
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<!--
|
||||
Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
This program and the accompanying materials are made available under the terms
|
||||
of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
-->
|
||||
|
||||
<plugin>
|
||||
|
@ -21,7 +21,7 @@ Contributors:
|
|||
<extension point="org.eclipse.emf.ecore.extension_parser">
|
||||
<parser
|
||||
type="discovery"
|
||||
class="org.eclipse.tm.discovery.model.util.ModelResourceFactoryImpl" />
|
||||
class="org.eclipse.tm.internal.discovery.model.util.ModelResourceFactoryImpl" />
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model;
|
||||
|
@ -26,7 +26,7 @@ public interface ModelFactory extends EFactory {
|
|||
*
|
||||
* @generated
|
||||
*/
|
||||
ModelFactory eINSTANCE = org.eclipse.tm.discovery.model.impl.ModelFactoryImpl.init();
|
||||
ModelFactory eINSTANCE = org.eclipse.tm.internal.discovery.model.impl.ModelFactoryImpl.init();
|
||||
|
||||
/**
|
||||
* Returns a new object of class '<em>Device</em>'.
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model;
|
||||
|
@ -56,13 +56,13 @@ public interface ModelPackage extends EPackage {
|
|||
*
|
||||
* @generated
|
||||
*/
|
||||
ModelPackage eINSTANCE = org.eclipse.tm.discovery.model.impl.ModelPackageImpl.init();
|
||||
ModelPackage eINSTANCE = org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl.init();
|
||||
|
||||
/**
|
||||
* The meta object id for the '{@link org.eclipse.tm.discovery.model.impl.DeviceImpl <em>Device</em>}' class.
|
||||
* The meta object id for the '{@link org.eclipse.tm.internal.discovery.model.impl.DeviceImpl <em>Device</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.DeviceImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getDevice()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.DeviceImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getDevice()
|
||||
* @generated
|
||||
*/
|
||||
int DEVICE = 0;
|
||||
|
@ -100,10 +100,10 @@ public interface ModelPackage extends EPackage {
|
|||
int DEVICE_FEATURE_COUNT = 3;
|
||||
|
||||
/**
|
||||
* The meta object id for the '{@link org.eclipse.tm.discovery.model.impl.NetworkImpl <em>Network</em>}' class.
|
||||
* The meta object id for the '{@link org.eclipse.tm.internal.discovery.model.impl.NetworkImpl <em>Network</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.NetworkImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getNetwork()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.NetworkImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getNetwork()
|
||||
* @generated
|
||||
*/
|
||||
int NETWORK = 1;
|
||||
|
@ -125,10 +125,10 @@ public interface ModelPackage extends EPackage {
|
|||
int NETWORK_FEATURE_COUNT = 1;
|
||||
|
||||
/**
|
||||
* The meta object id for the '{@link org.eclipse.tm.discovery.model.impl.PairImpl <em>Pair</em>}' class.
|
||||
* The meta object id for the '{@link org.eclipse.tm.internal.discovery.model.impl.PairImpl <em>Pair</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.PairImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getPair()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.PairImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getPair()
|
||||
* @generated
|
||||
*/
|
||||
int PAIR = 2;
|
||||
|
@ -158,10 +158,10 @@ public interface ModelPackage extends EPackage {
|
|||
int PAIR_FEATURE_COUNT = 2;
|
||||
|
||||
/**
|
||||
* The meta object id for the '{@link org.eclipse.tm.discovery.model.impl.ServiceImpl <em>Service</em>}' class.
|
||||
* The meta object id for the '{@link org.eclipse.tm.internal.discovery.model.impl.ServiceImpl <em>Service</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.ServiceImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getService()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ServiceImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getService()
|
||||
* @generated
|
||||
*/
|
||||
int SERVICE = 3;
|
||||
|
@ -191,10 +191,10 @@ public interface ModelPackage extends EPackage {
|
|||
int SERVICE_FEATURE_COUNT = 2;
|
||||
|
||||
/**
|
||||
* The meta object id for the '{@link org.eclipse.tm.discovery.model.impl.ServiceTypeImpl <em>Service Type</em>}' class.
|
||||
* The meta object id for the '{@link org.eclipse.tm.internal.discovery.model.impl.ServiceTypeImpl <em>Service Type</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.ServiceTypeImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getServiceType()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ServiceTypeImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getServiceType()
|
||||
* @generated
|
||||
*/
|
||||
int SERVICE_TYPE = 4;
|
||||
|
@ -395,10 +395,10 @@ public interface ModelPackage extends EPackage {
|
|||
|
||||
interface Literals {
|
||||
/**
|
||||
* The meta object literal for the '{@link org.eclipse.tm.discovery.model.impl.DeviceImpl <em>Device</em>}' class.
|
||||
* The meta object literal for the '{@link org.eclipse.tm.internal.discovery.model.impl.DeviceImpl <em>Device</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.DeviceImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getDevice()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.DeviceImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getDevice()
|
||||
* @generated
|
||||
*/
|
||||
|
||||
|
@ -426,10 +426,10 @@ public interface ModelPackage extends EPackage {
|
|||
EAttribute DEVICE__NAME = eINSTANCE.getDevice_Name();
|
||||
|
||||
/**
|
||||
* The meta object literal for the '{@link org.eclipse.tm.discovery.model.impl.NetworkImpl <em>Network</em>}' class.
|
||||
* The meta object literal for the '{@link org.eclipse.tm.internal.discovery.model.impl.NetworkImpl <em>Network</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.NetworkImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getNetwork()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.NetworkImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getNetwork()
|
||||
* @generated
|
||||
*/
|
||||
EClass NETWORK = eINSTANCE.getNetwork();
|
||||
|
@ -442,10 +442,10 @@ public interface ModelPackage extends EPackage {
|
|||
EReference NETWORK__DEVICE = eINSTANCE.getNetwork_Device();
|
||||
|
||||
/**
|
||||
* The meta object literal for the '{@link org.eclipse.tm.discovery.model.impl.PairImpl <em>Pair</em>}' class.
|
||||
* The meta object literal for the '{@link org.eclipse.tm.internal.discovery.model.impl.PairImpl <em>Pair</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.PairImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getPair()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.PairImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getPair()
|
||||
* @generated
|
||||
*/
|
||||
EClass PAIR = eINSTANCE.getPair();
|
||||
|
@ -465,10 +465,10 @@ public interface ModelPackage extends EPackage {
|
|||
EAttribute PAIR__VALUE = eINSTANCE.getPair_Value();
|
||||
|
||||
/**
|
||||
* The meta object literal for the '{@link org.eclipse.tm.discovery.model.impl.ServiceImpl <em>Service</em>}' class.
|
||||
* The meta object literal for the '{@link org.eclipse.tm.internal.discovery.model.impl.ServiceImpl <em>Service</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.ServiceImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getService()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ServiceImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getService()
|
||||
* @generated
|
||||
*/
|
||||
EClass SERVICE = eINSTANCE.getService();
|
||||
|
@ -488,10 +488,10 @@ public interface ModelPackage extends EPackage {
|
|||
EAttribute SERVICE__NAME = eINSTANCE.getService_Name();
|
||||
|
||||
/**
|
||||
* The meta object literal for the '{@link org.eclipse.tm.discovery.model.impl.ServiceTypeImpl <em>Service Type</em>}' class.
|
||||
* The meta object literal for the '{@link org.eclipse.tm.internal.discovery.model.impl.ServiceTypeImpl <em>Service Type</em>}' class.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.impl.ServiceTypeImpl
|
||||
* @see org.eclipse.tm.discovery.model.impl.ModelPackageImpl#getServiceType()
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ServiceTypeImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.impl.ModelPackageImpl#getServiceType()
|
||||
* @generated
|
||||
*/
|
||||
EClass SERVICE_TYPE = eINSTANCE.getServiceType();
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model;
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.impl;
|
||||
package org.eclipse.tm.internal.discovery.model.impl;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
|
@ -37,9 +37,9 @@ import org.eclipse.tm.discovery.model.ServiceType;
|
|||
* <p>
|
||||
* The following features are implemented:
|
||||
* <ul>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.DeviceImpl#getServiceType <em>Service Type</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.DeviceImpl#getAddress <em>Address</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.DeviceImpl#getName <em>Name</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.DeviceImpl#getServiceType <em>Service Type</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.DeviceImpl#getAddress <em>Address</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.DeviceImpl#getName <em>Name</em>}</li>
|
||||
* </ul>
|
||||
* </p>
|
||||
*
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.impl;
|
||||
package org.eclipse.tm.internal.discovery.model.impl;
|
||||
|
||||
import org.eclipse.emf.ecore.EClass;
|
||||
import org.eclipse.emf.ecore.EObject;
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.impl;
|
||||
package org.eclipse.tm.internal.discovery.model.impl;
|
||||
|
||||
import org.eclipse.emf.ecore.EAttribute;
|
||||
import org.eclipse.emf.ecore.EClass;
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.impl;
|
||||
package org.eclipse.tm.internal.discovery.model.impl;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
|
@ -35,7 +35,7 @@ import org.eclipse.tm.discovery.model.Network;
|
|||
* <p>
|
||||
* The following features are implemented:
|
||||
* <ul>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.NetworkImpl#getDevice <em>Device</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.NetworkImpl#getDevice <em>Device</em>}</li>
|
||||
* </ul>
|
||||
* </p>
|
||||
*
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.impl;
|
||||
package org.eclipse.tm.internal.discovery.model.impl;
|
||||
|
||||
import org.eclipse.emf.common.notify.Notification;
|
||||
|
||||
|
@ -27,8 +27,8 @@ import org.eclipse.tm.discovery.model.Pair;
|
|||
* <p>
|
||||
* The following features are implemented:
|
||||
* <ul>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.PairImpl#getKey <em>Key</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.PairImpl#getValue <em>Value</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.PairImpl#getKey <em>Key</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.PairImpl#getValue <em>Value</em>}</li>
|
||||
* </ul>
|
||||
* </p>
|
||||
*
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.impl;
|
||||
package org.eclipse.tm.internal.discovery.model.impl;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
|
@ -37,8 +37,8 @@ import org.eclipse.tm.discovery.model.Service;
|
|||
* <p>
|
||||
* The following features are implemented:
|
||||
* <ul>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.ServiceImpl#getPair <em>Pair</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.ServiceImpl#getName <em>Name</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.ServiceImpl#getPair <em>Pair</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.ServiceImpl#getName <em>Name</em>}</li>
|
||||
* </ul>
|
||||
* </p>
|
||||
*
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.impl;
|
||||
package org.eclipse.tm.internal.discovery.model.impl;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
|
@ -37,8 +37,8 @@ import org.eclipse.tm.discovery.model.ServiceType;
|
|||
* <p>
|
||||
* The following features are implemented:
|
||||
* <ul>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.ServiceTypeImpl#getService <em>Service</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.discovery.model.impl.ServiceTypeImpl#getName <em>Name</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.ServiceTypeImpl#getService <em>Service</em>}</li>
|
||||
* <li>{@link org.eclipse.tm.internal.discovery.model.impl.ServiceTypeImpl#getName <em>Name</em>}</li>
|
||||
* </ul>
|
||||
* </p>
|
||||
*
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.util;
|
||||
package org.eclipse.tm.internal.discovery.model.util;
|
||||
|
||||
import org.eclipse.emf.common.notify.Adapter;
|
||||
import org.eclipse.emf.common.notify.Notifier;
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.util;
|
||||
package org.eclipse.tm.internal.discovery.model.util;
|
||||
|
||||
import org.eclipse.emf.common.util.URI;
|
||||
|
||||
|
@ -22,7 +22,7 @@ import org.eclipse.emf.ecore.xmi.XMLResource;
|
|||
*
|
||||
* The <b>Resource Factory</b> associated with the package.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.util.ModelResourceImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.util.ModelResourceImpl
|
||||
* @generated
|
||||
*/
|
||||
public class ModelResourceFactoryImpl extends ResourceFactoryImpl {
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.util;
|
||||
package org.eclipse.tm.internal.discovery.model.util;
|
||||
|
||||
import org.eclipse.emf.common.util.URI;
|
||||
|
||||
|
@ -18,7 +18,7 @@ import org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl;
|
|||
*
|
||||
* The <b>Resource </b> associated with the package.
|
||||
*
|
||||
* @see org.eclipse.tm.discovery.model.util.ModelResourceFactoryImpl
|
||||
* @see org.eclipse.tm.internal.discovery.model.util.ModelResourceFactoryImpl
|
||||
* @generated
|
||||
*/
|
||||
public class ModelResourceImpl extends XMLResourceImpl {
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.util;
|
||||
package org.eclipse.tm.internal.discovery.model.util;
|
||||
|
||||
import java.util.List;
|
||||
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.model.util;
|
||||
package org.eclipse.tm.internal.discovery.model.util;
|
||||
|
||||
import java.util.Map;
|
||||
|
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
|
||||
<accessrules>
|
||||
<accessrule kind="discouraged" pattern="**/internal/**"/>
|
||||
</accessrules>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.tm.discovery.protocol.dnssd;singleton:=true
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-Activator: org.eclipse.tm.discovery.protocol.dnssd.Activator
|
||||
Bundle-Activator: org.eclipse.tm.internal.discovery.protocol.dnssd.Activator
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -1,9 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.2"?>
|
||||
|
||||
<!--
|
||||
Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
This program and the accompanying materials are made available under the terms
|
||||
of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
-->
|
||||
|
||||
<plugin>
|
||||
<extension point="org.eclipse.tm.discovery.engine.discoveryProtocol">
|
||||
<protocol
|
||||
class="org.eclipse.tm.discovery.protocol.dnssd.DNSSDProtocol"
|
||||
class="org.eclipse.tm.internal.discovery.protocol.dnssd.DNSSDProtocol"
|
||||
name="DNS-SD"/>
|
||||
</extension>
|
||||
</plugin>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.protocol.dnssd;
|
||||
package org.eclipse.tm.internal.discovery.protocol.dnssd;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.protocol.dnssd;
|
||||
package org.eclipse.tm.internal.discovery.protocol.dnssd;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
import java.util.Iterator;
|
|
@ -1,20 +1,20 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.protocol.dnssd;
|
||||
package org.eclipse.tm.internal.discovery.protocol.dnssd;
|
||||
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
public class Messages {
|
||||
private static final String BUNDLE_NAME = "org.eclipse.tm.discovery.protocol.dnssd.messages"; //$NON-NLS-1$
|
||||
private static final String BUNDLE_NAME = "org.eclipse.tm.internal.discovery.protocol.dnssd.messages"; //$NON-NLS-1$
|
||||
|
||||
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
|
||||
.getBundle(BUNDLE_NAME);
|
|
@ -1,11 +1,11 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
# Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
# Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
DNSSDProtocol.ServiceDiscoveryCommand=_services._dns-sd._udp.local.
|
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
|
||||
<accessrules>
|
||||
<accessrule kind="discouraged" pattern="**/internal/**"/>
|
||||
</accessrules>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.tm.discovery.transport.udp;singleton:=true
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-Activator: org.eclipse.tm.discovery.transport.udp.Activator
|
||||
Bundle-Activator: org.eclipse.tm.internal.discovery.transport.udp.Activator
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
@ -11,3 +11,4 @@ Require-Bundle: org.eclipse.ui,
|
|||
org.eclipse.tm.discovery.engine
|
||||
Eclipse-LazyStart: true
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||
Export-Package: org.eclipse.tm.internal.discovery.transport.udp;x-internal:=true
|
||||
|
|
|
@ -1,10 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.2"?>
|
||||
|
||||
<!--
|
||||
Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
This program and the accompanying materials are made available under the terms
|
||||
of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
-->
|
||||
|
||||
<plugin>
|
||||
<extension
|
||||
point="org.eclipse.tm.discovery.engine.discoveryTransport">
|
||||
<transport
|
||||
class="org.eclipse.tm.discovery.transport.udp.UDPTransport"
|
||||
class="org.eclipse.tm.internal.discovery.transport.udp.UDPTransport"
|
||||
name="UDP"/>
|
||||
</extension>
|
||||
</plugin>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.transport.udp;
|
||||
package org.eclipse.tm.internal.discovery.transport.udp;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.transport.udp;
|
||||
package org.eclipse.tm.internal.discovery.transport.udp;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.DatagramPacket;
|
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
|
||||
<accessrules>
|
||||
<accessrule kind="discouraged" pattern="**/internal/**"/>
|
||||
</accessrules>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.tm.discovery.view;singleton:=true
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-Activator: org.eclipse.tm.discovery.view.Activator
|
||||
Bundle-Activator: org.eclipse.tm.internal.discovery.view.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.ui.forms,
|
||||
|
@ -17,9 +17,9 @@ Require-Bundle: org.eclipse.core.runtime,
|
|||
Eclipse-LazyStart: false
|
||||
Import-Package: org.eclipse.emf.common.ui,
|
||||
org.eclipse.emf.common.util,
|
||||
org.eclipse.tm.discovery.engine,
|
||||
org.eclipse.tm.discovery.model.provider,
|
||||
org.eclipse.tm.discovery.model.util
|
||||
Export-Package: org.eclipse.tm.discovery.view
|
||||
org.eclipse.tm.internal.discovery.engine,
|
||||
org.eclipse.tm.internal.discovery.model.provider,
|
||||
org.eclipse.tm.internal.discovery.model.util
|
||||
Export-Package: org.eclipse.tm.internal.discovery.view
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
<?eclipse version="3.2"?>
|
||||
|
||||
<!--
|
||||
Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
This program and the accompanying materials are made available under the terms
|
||||
of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
-->
|
||||
|
||||
<plugin>
|
||||
|
@ -21,7 +21,7 @@ Contributors:
|
|||
</category>
|
||||
<view
|
||||
category="org.eclipse.rse.discovery.category"
|
||||
class="org.eclipse.tm.discovery.view.ServiceDiscoveryView"
|
||||
class="org.eclipse.tm.internal.discovery.view.ServiceDiscoveryView"
|
||||
icon="icons/system_view.gif"
|
||||
id="org.eclipse.rse.discovery.view.MultipleView"
|
||||
name="Service Discovery Properties"/>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.view;
|
||||
package org.eclipse.tm.internal.discovery.view;
|
||||
|
||||
import org.eclipse.jface.resource.ImageDescriptor;
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
|
@ -1,19 +1,19 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.view;
|
||||
package org.eclipse.tm.internal.discovery.view;
|
||||
|
||||
import org.eclipse.osgi.util.NLS;
|
||||
|
||||
public class Messages extends NLS {
|
||||
private static final String BUNDLE_NAME = "org.eclipse.tm.discovery.view.messages"; //$NON-NLS-1$
|
||||
private static final String BUNDLE_NAME = "org.eclipse.tm.internal.discovery.view.messages"; //$NON-NLS-1$
|
||||
|
||||
public static String ServiceDiscoveryView_ClearActionText;
|
||||
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.view;
|
||||
package org.eclipse.tm.internal.discovery.view;
|
||||
|
||||
import java.net.UnknownHostException;
|
||||
import java.util.ArrayList;
|
||||
|
@ -47,14 +47,14 @@ import org.eclipse.swt.widgets.Shell;
|
|||
import org.eclipse.swt.widgets.Table;
|
||||
import org.eclipse.swt.widgets.TableColumn;
|
||||
import org.eclipse.swt.widgets.Tree;
|
||||
import org.eclipse.tm.discovery.engine.ServiceDiscoveryEngine;
|
||||
import org.eclipse.tm.discovery.model.Service;
|
||||
import org.eclipse.tm.discovery.model.provider.ModelItemProviderAdapterFactory;
|
||||
import org.eclipse.tm.discovery.protocol.IProtocol;
|
||||
import org.eclipse.tm.discovery.protocol.ProtocolFactory;
|
||||
import org.eclipse.tm.discovery.transport.ITransport;
|
||||
import org.eclipse.tm.discovery.transport.TransportFactory;
|
||||
import org.eclipse.tm.discovery.wizard.ServiceDiscoveryWizardMainPage;
|
||||
import org.eclipse.tm.internal.discovery.engine.ServiceDiscoveryEngine;
|
||||
import org.eclipse.tm.internal.discovery.model.provider.ModelItemProviderAdapterFactory;
|
||||
import org.eclipse.tm.internal.discovery.wizard.ServiceDiscoveryWizardMainPage;
|
||||
import org.eclipse.ui.ISharedImages;
|
||||
import org.eclipse.ui.PlatformUI;
|
||||
import org.eclipse.ui.dialogs.ContainerCheckedTreeViewer;
|
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
|
||||
<accessrules>
|
||||
<accessrule kind="discouraged" pattern="**/internal/**"/>
|
||||
</accessrules>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.tm.discovery.wizard
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-Activator: org.eclipse.tm.discovery.wizard.Activator
|
||||
Bundle-Activator: org.eclipse.tm.internal.discovery.wizard.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.emf.ecore.edit;bundle-version="[2.2.0,3.0.0)",
|
||||
|
@ -13,6 +13,6 @@ Require-Bundle: org.eclipse.ui,
|
|||
org.eclipse.tm.discovery.model,
|
||||
org.eclipse.tm.discovery.model.edit
|
||||
Eclipse-LazyStart: true
|
||||
Export-Package: org.eclipse.tm.discovery.wizard
|
||||
Export-Package: org.eclipse.tm.internal.discovery.wizard;x-friends:="org.eclipse.rse.internal.discovery"
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.wizard;
|
||||
package org.eclipse.tm.internal.discovery.wizard;
|
||||
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
|
@ -1,20 +1,20 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.engine;
|
||||
package org.eclipse.tm.internal.discovery.wizard;
|
||||
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
public class Messages {
|
||||
private static final String BUNDLE_NAME = "org.eclipse.tm.discovery.engine.messages"; //$NON-NLS-1$
|
||||
private static final String BUNDLE_NAME = "org.eclipse.tm.internal.discovery.wizard.messages"; //$NON-NLS-1$
|
||||
|
||||
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
|
||||
.getBundle(BUNDLE_NAME);
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -8,7 +8,7 @@
|
|||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.wizard;
|
||||
package org.eclipse.tm.internal.discovery.wizard;
|
||||
|
||||
import java.net.UnknownHostException;
|
||||
import java.util.ArrayList;
|
||||
|
@ -62,16 +62,16 @@ import org.eclipse.swt.widgets.Text;
|
|||
import org.eclipse.swt.widgets.ToolBar;
|
||||
import org.eclipse.swt.widgets.ToolItem;
|
||||
import org.eclipse.swt.widgets.Tree;
|
||||
import org.eclipse.tm.discovery.engine.ServiceDiscoveryEngine;
|
||||
import org.eclipse.tm.discovery.model.Device;
|
||||
import org.eclipse.tm.discovery.model.Pair;
|
||||
import org.eclipse.tm.discovery.model.Service;
|
||||
import org.eclipse.tm.discovery.model.ServiceType;
|
||||
import org.eclipse.tm.discovery.model.provider.ModelItemProviderAdapterFactory;
|
||||
import org.eclipse.tm.discovery.protocol.IProtocol;
|
||||
import org.eclipse.tm.discovery.protocol.ProtocolFactory;
|
||||
import org.eclipse.tm.discovery.transport.ITransport;
|
||||
import org.eclipse.tm.discovery.transport.TransportFactory;
|
||||
import org.eclipse.tm.internal.discovery.engine.ServiceDiscoveryEngine;
|
||||
import org.eclipse.tm.internal.discovery.model.provider.ModelItemProviderAdapterFactory;
|
||||
import org.eclipse.ui.ISharedImages;
|
||||
import org.eclipse.ui.PlatformUI;
|
||||
import org.eclipse.ui.dialogs.ContainerCheckedTreeViewer;
|
|
@ -1,14 +1,14 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
* Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
* Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.tm.discovery.wizard;
|
||||
package org.eclipse.tm.internal.discovery.wizard;
|
||||
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
import org.eclipse.jface.wizard.WizardPage;
|
|
@ -1,11 +1,11 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2006 Symbian Software Ltd. All rights reserved.
|
||||
# Copyright (c) 2006, 2007 Symbian Software Ltd. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Javier Montalvo Orús (Symbian) - initial API and implementation
|
||||
# Javier Montalvo Orus (Symbian) - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
ServiceDiscoveryWizardDisplayPage.WizardPageTitle=Service Discovery
|
Loading…
Add table
Reference in a new issue