1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +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
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -63,7 +63,7 @@ public interface ITelnetSessionProvider {
* (such as timeout, communications error, or failure matching
* expected prompt). The passed-in TelnetClient remains
* connected in this case.
* @since 1.2
* @since 2.0
*/
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
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -17,7 +17,7 @@ import java.io.IOException;
import java.io.InputStream;
/**
* @since 1.2
* @since 2.0
*/
public class EOFDetectingInputStreamWrapper extends FilterInputStream {
@ -50,7 +50,7 @@ public class EOFDetectingInputStreamWrapper extends FilterInputStream {
/*
* (non-Javadoc)
*
*
* @see java.io.InputStream#close()
*/
public void close() throws IOException {
@ -63,7 +63,7 @@ public class EOFDetectingInputStreamWrapper extends FilterInputStream {
/*
* (non-Javadoc)
*
*
* @see java.io.InputStream#read(byte[], int, int)
*/
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.
* @since 1.2
*
* @since 2.0
*/
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
* are made available under the terms of the Eclipse Public License v1.0
* 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.
*
* @since 1.2
*
* @since 2.0
*/
public class TelnetTerminalShell extends AbstractTerminalShell {
@ -56,9 +56,9 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
/**
* Construct a new Terminal connection.
*
*
* The SSH channel is immediately connected in the Constructor.
*
*
* @param sessionProvider
* SSH session provider
* @param ptyType
@ -143,7 +143,7 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
/**
* Encode String with requested user encoding, in case it differs from
* Platform default encoding.
*
*
* @param s
* String to encode
* @param encoding
@ -167,7 +167,7 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
/*
* (non-Javadoc)
*
*
* @see ITerminalHostShell#getInputStream(Object)
*/
public InputStream getInputStream() {
@ -176,7 +176,7 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
/*
* (non-Javadoc)
*
*
* @see ITerminalHostShell#getOutputStream(Object)
*/
public OutputStream getOutputStream() {
@ -187,7 +187,7 @@ public class TelnetTerminalShell extends AbstractTerminalShell {
* Write a command to the shell, honoring specified Encoding. Can only be
* done before an outputStream is obtained, since these commands would
* interfere with the outputStream.
*
*
* @param command
* Command String to send, or "#break" to send a Ctrl+C command.
*/