~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.systemtap.ui.consolelog/src/org/eclipse/linuxtools/systemtap/ui/consolelog/Subscription.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-13 21:43:22 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130513214322-6frgd9du1n0w2uo7
Tags: 1.2.1-1
* Team upload.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
 
9
9
import java.io.File;
 
10
import java.io.PipedInputStream;
10
11
import java.io.PipedOutputStream;
11
 
import java.io.PipedInputStream;
12
12
import java.util.ArrayList;
13
13
 
14
14
import org.eclipse.linuxtools.systemtap.ui.consolelog.dialogs.ErrorMessage;
115
115
         * Contains blocking reads.
116
116
         * 
117
117
         */
118
 
          public void run () {
 
118
          @Override
 
119
        public void run () {
119
120
                running = true;
120
121
                DMResponse subrep = null;
121
122
                //long timeToRemove = 0;
241
242
         */
242
243
        public ArrayList<IGobblerListener> getInputStreamListeners() {
243
244
                if(null != inputGobbler)
 
245
                        return inputGobbler.getDataListeners();
 
246
                else
244
247
                        return inputListeners;
245
 
                else
246
 
                        return inputGobbler.getDataListeners();
247
248
        }
248
249
        
249
250
        /**
252
253
         */
253
254
        public ArrayList<IGobblerListener> getErrorStreamListeners() {
254
255
                if(null != errorGobbler)
 
256
                        return errorGobbler.getDataListeners();
 
257
                else
255
258
                        return errorListeners;
256
 
                else
257
 
                        return errorGobbler.getDataListeners();
258
259
        }
259
260
        
260
261
        /**