mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-09 19:43:27 +02:00
Fix API tooling issues
This commit is contained in:
parent
092e089d40
commit
ad7aa452d3
6 changed files with 25 additions and 2 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.tm.terminal.connector.telnet;singleton:=true
|
Bundle-SymbolicName: org.eclipse.tm.terminal.connector.telnet;singleton:=true
|
||||||
Bundle-Version: 4.1.0.qualifier
|
Bundle-Version: 4.2.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.tm.terminal.connector.telnet.activator.UIPlugin
|
Bundle-Activator: org.eclipse.tm.terminal.connector.telnet.activator.UIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>4.1.0-SNAPSHOT</version>
|
<version>4.2.0-SNAPSHOT</version>
|
||||||
<artifactId>org.eclipse.tm.terminal.connector.telnet</artifactId>
|
<artifactId>org.eclipse.tm.terminal.connector.telnet</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -13,13 +13,26 @@ package org.eclipse.tm.terminal.connector.telnet.connector;
|
||||||
|
|
||||||
import org.eclipse.tm.internal.terminal.provisional.api.ISettingsStore;
|
import org.eclipse.tm.internal.terminal.provisional.api.ISettingsStore;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @noimplement This interface is not intended to be implemented by clients.
|
||||||
|
* @noextend This interface is not intended to be extended by clients.
|
||||||
|
*/
|
||||||
public interface ITelnetSettings {
|
public interface ITelnetSettings {
|
||||||
|
/**
|
||||||
|
* @since 4.2
|
||||||
|
*/
|
||||||
static final String EOL_CRNUL = "CR+NUL"; //$NON-NLS-1$
|
static final String EOL_CRNUL = "CR+NUL"; //$NON-NLS-1$
|
||||||
|
/**
|
||||||
|
* @since 4.2
|
||||||
|
*/
|
||||||
static final String EOL_CRLF = "CR+LF"; //$NON-NLS-1$
|
static final String EOL_CRLF = "CR+LF"; //$NON-NLS-1$
|
||||||
|
|
||||||
String getHost();
|
String getHost();
|
||||||
int getNetworkPort();
|
int getNetworkPort();
|
||||||
int getTimeout();
|
int getTimeout();
|
||||||
|
/**
|
||||||
|
* @since 4.2
|
||||||
|
*/
|
||||||
String getEndOfLine();
|
String getEndOfLine();
|
||||||
String getSummary();
|
String getSummary();
|
||||||
void load(ISettingsStore store);
|
void load(ISettingsStore store);
|
||||||
|
|
|
@ -21,6 +21,9 @@ public class TelnetMessages extends NLS {
|
||||||
public static String HOST;
|
public static String HOST;
|
||||||
public static String CONNECTION_CLOSED_BY_FOREIGN_HOST;
|
public static String CONNECTION_CLOSED_BY_FOREIGN_HOST;
|
||||||
public static String TIMEOUT;
|
public static String TIMEOUT;
|
||||||
|
/**
|
||||||
|
* @since 4.2
|
||||||
|
*/
|
||||||
public static String END_OF_LINE;
|
public static String END_OF_LINE;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,9 @@ package org.eclipse.tm.terminal.connector.telnet.connector;
|
||||||
|
|
||||||
import org.eclipse.tm.internal.terminal.provisional.api.ISettingsStore;
|
import org.eclipse.tm.internal.terminal.provisional.api.ISettingsStore;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @noreference This class is not intended to be referenced by clients.
|
||||||
|
*/
|
||||||
public class TelnetSettings implements ITelnetSettings {
|
public class TelnetSettings implements ITelnetSettings {
|
||||||
protected String fHost;
|
protected String fHost;
|
||||||
protected String fNetworkPort;
|
protected String fNetworkPort;
|
||||||
|
|
|
@ -15,6 +15,9 @@ import org.eclipse.tm.terminal.view.core.interfaces.ITerminalServiceOutputStream
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the terminals connector constants.
|
* Defines the terminals connector constants.
|
||||||
|
*
|
||||||
|
* @noextend This interface is not intended to be extended by clients.
|
||||||
|
* @noimplement This interface is not intended to be implemented by clients.
|
||||||
*/
|
*/
|
||||||
public interface ITerminalsConnectorConstants {
|
public interface ITerminalsConnectorConstants {
|
||||||
|
|
||||||
|
@ -326,6 +329,7 @@ public interface ITerminalsConnectorConstants {
|
||||||
* The end-of-line sequence to be sent to the server on "Enter".
|
* The end-of-line sequence to be sent to the server on "Enter".
|
||||||
* <p>
|
* <p>
|
||||||
* Property Type: {@link String}
|
* Property Type: {@link String}
|
||||||
|
* @since 4.1
|
||||||
*/
|
*/
|
||||||
public static final String PROP_TELNET_EOL = "telnet.eol"; //$NON-NLS-1$
|
public static final String PROP_TELNET_EOL = "telnet.eol"; //$NON-NLS-1$
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue