1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 15:25:49 +02:00

[261478][releng] Fix @since tags after reving up to 2.0

This commit is contained in:
Martin Oberhuber 2009-02-01 17:12:05 +00:00
parent ffc7a4e286
commit 4c53507e37
4 changed files with 17 additions and 16 deletions

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2006, 2008 IBM Corporation and others. * Copyright (c) 2006, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -63,7 +63,7 @@ public interface ITelnetSessionProvider {
* (such as timeout, communications error, or failure matching * (such as timeout, communications error, or failure matching
* expected prompt). The passed-in TelnetClient remains * expected prompt). The passed-in TelnetClient remains
* connected in this case. * connected in this case.
* @since 1.2 * @since 2.0
*/ */
public TelnetClient loginTelnetClient(TelnetClient client, IProgressMonitor monitor) throws SystemMessageException; public TelnetClient loginTelnetClient(TelnetClient client, IProgressMonitor monitor) throws SystemMessageException;

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2008 MontaVista Software, Inc. and others. * Copyright (c) 2008, 2009 MontaVista Software, Inc. and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -17,7 +17,7 @@ import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
/** /**
* @since 1.2 * @since 2.0
*/ */
public class EOFDetectingInputStreamWrapper extends FilterInputStream { public class EOFDetectingInputStreamWrapper extends FilterInputStream {
@ -50,7 +50,7 @@ public class EOFDetectingInputStreamWrapper extends FilterInputStream {
/* /*
* (non-Javadoc) * (non-Javadoc)
* *
* @see java.io.InputStream#close() * @see java.io.InputStream#close()
*/ */
public void close() throws IOException { public void close() throws IOException {
@ -63,7 +63,7 @@ public class EOFDetectingInputStreamWrapper extends FilterInputStream {
/* /*
* (non-Javadoc) * (non-Javadoc)
* *
* @see java.io.InputStream#read(byte[], int, int) * @see java.io.InputStream#read(byte[], int, int)
*/ */
public int read(byte[] b, int off, int len) throws IOException { public int read(byte[] b, int off, int len) throws IOException {

View file

@ -23,7 +23,8 @@ import org.eclipse.rse.services.terminals.ITerminalShell;
/** /**
* A Terminal Service for telnet. * A Terminal Service for telnet.
* @since 1.2 *
* @since 2.0
*/ */
public class TelnetTerminalService extends AbstractTerminalService implements ITelnetService { public class TelnetTerminalService extends AbstractTerminalService implements ITelnetService {

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2008 Wind River Systems, Inc. and others. * Copyright (c) 2008, 2009 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -38,8 +38,8 @@ import org.eclipse.rse.services.terminals.ITerminalService;
/** /**
* A remote shell connection supporting Streams for I/O. * A remote shell connection supporting Streams for I/O.
* *
* @since 1.2 * @since 2.0
*/ */
public class TelnetTerminalShell extends AbstractTerminalShell { public class TelnetTerminalShell extends AbstractTerminalShell {
@ -56,9 +56,9 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
/** /**
* Construct a new Terminal connection. * Construct a new Terminal connection.
* *
* The SSH channel is immediately connected in the Constructor. * The SSH channel is immediately connected in the Constructor.
* *
* @param sessionProvider * @param sessionProvider
* SSH session provider * SSH session provider
* @param ptyType * @param ptyType
@ -143,7 +143,7 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
/** /**
* Encode String with requested user encoding, in case it differs from * Encode String with requested user encoding, in case it differs from
* Platform default encoding. * Platform default encoding.
* *
* @param s * @param s
* String to encode * String to encode
* @param encoding * @param encoding
@ -167,7 +167,7 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
/* /*
* (non-Javadoc) * (non-Javadoc)
* *
* @see ITerminalHostShell#getInputStream(Object) * @see ITerminalHostShell#getInputStream(Object)
*/ */
public InputStream getInputStream() { public InputStream getInputStream() {
@ -176,7 +176,7 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
/* /*
* (non-Javadoc) * (non-Javadoc)
* *
* @see ITerminalHostShell#getOutputStream(Object) * @see ITerminalHostShell#getOutputStream(Object)
*/ */
public OutputStream getOutputStream() { public OutputStream getOutputStream() {
@ -187,7 +187,7 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
* Write a command to the shell, honoring specified Encoding. Can only be * Write a command to the shell, honoring specified Encoding. Can only be
* done before an outputStream is obtained, since these commands would * done before an outputStream is obtained, since these commands would
* interfere with the outputStream. * interfere with the outputStream.
* *
* @param command * @param command
* Command String to send, or "#break" to send a Ctrl+C command. * Command String to send, or "#break" to send a Ctrl+C command.
*/ */