mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-29 19:23:38 +02:00
[cleanup] Add API "since" Javadoc tags
This commit is contained in:
parent
b91376bf09
commit
7cb6301408
4 changed files with 89 additions and 79 deletions
|
@ -20,9 +20,15 @@
|
|||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.api.tools.apiAnalysisBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.PluginNature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.eclipse.pde.api.tools.apiAnalysisNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<component id="org.eclipse.dstore.core" version="1">
|
||||
<resource path="src/org/eclipse/dstore/core/model/DataStoreAttributes.java">
|
||||
<filter id="388190292"/>
|
||||
</resource>
|
||||
</component>
|
|
@ -76,13 +76,9 @@ import org.eclipse.dstore.internal.extra.DomainNotifier;
|
|||
* newly launched DataStore. Otherwise, a DataStore is expected to be running on
|
||||
* the remote machine under the same port that the client tries to connect to.
|
||||
* </li>
|
||||
*
|
||||
*
|
||||
*/
|
||||
public class ClientConnection
|
||||
{
|
||||
|
||||
|
||||
private ClientAttributes _clientAttributes;
|
||||
|
||||
private Socket _theSocket;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2006, 2007 IBM Corporation. All rights reserved.
|
||||
* Copyright (c) 2006, 2008 IBM Corporation. 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
|
||||
|
@ -13,19 +13,21 @@
|
|||
* Contributors:
|
||||
* David McKnight (IBM) - update version to 9.0.0
|
||||
* David McKnight (IBM) - [220892] version back to 8.1.0 since protocol hasn't changed
|
||||
* Martin Oberhuber (Wind River) - [cleanup] Add API "since" Javadoc tags
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.dstore.core.model;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* This class is used to store attributes that are required
|
||||
* for configurating a remote connection.
|
||||
* This class is used to store attributes that are required for configuring a
|
||||
* remote connection.
|
||||
*/
|
||||
public class DataStoreAttributes
|
||||
{
|
||||
|
||||
/**
|
||||
* Datastore Protocol Version. Current value = "DataStore.8.0.0". Will be
|
||||
* changed with protocol updates (which are only rarely necessary).
|
||||
*/
|
||||
public static final String DATASTORE_VERSION = "DataStore.8.0.0"; //$NON-NLS-1$
|
||||
|
||||
public static final int A_PLUGIN_PATH = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue