VDBUnixInferiorConsoleApplication.st
changeset 51 6c982fc25fe2
parent 49 2ec7f7ed9242
child 115 0dd989ce3ae7
equal deleted inserted replaced
50:15dce66b951a 51:6c982fc25fe2
       
     1 "
       
     2 jv:vdb - Visual / VM Debugger
       
     3 Copyright (C) 2015-now Jan Vrany
       
     4 
       
     5 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
       
     6 
       
     7 You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
       
     8 "
       
     9 "{ Package: 'jv:vdb' }"
       
    10 
       
    11 "{ NameSpace: Smalltalk }"
       
    12 
       
    13 VDBAbstractUnixConsoleApplication subclass:#VDBUnixInferiorConsoleApplication
       
    14 	instanceVariableNames:''
       
    15 	classVariableNames:''
       
    16 	poolDictionaries:''
       
    17 	category:'VDB-UI-Console-Unix'
       
    18 !
       
    19 
       
    20 !VDBUnixInferiorConsoleApplication class methodsFor:'documentation'!
       
    21 
       
    22 copyright
       
    23 "
       
    24 jv:vdb - Visual / VM Debugger
       
    25 Copyright (C) 2015-now Jan Vrany
       
    26 
       
    27 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
       
    28 
       
    29 You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
       
    30 "
       
    31 ! !
       
    32 
       
    33 !VDBUnixInferiorConsoleApplication class methodsFor:'accessing'!
       
    34 
       
    35 windowTitle
       
    36     ^ 'Inferior Console'
       
    37 
       
    38     "Created: / 08-01-2018 / 18:59:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    39 ! !
       
    40 
       
    41 !VDBUnixInferiorConsoleApplication class methodsFor:'startup-web applications'!
       
    42 
       
    43 initialPageSpec
       
    44     "this is only required for web-applications"
       
    45 
       
    46     ^ self shouldImplement
       
    47 !
       
    48 
       
    49 pageSpecs
       
    50     "this is only required for web-applications"
       
    51 
       
    52     ^ self shouldImplement
       
    53 ! !
       
    54 
       
    55 !VDBUnixInferiorConsoleApplication methodsFor:'accessing'!
       
    56 
       
    57 consoleInput
       
    58     "superclass VDBAbstractConsoleApplication says that I am responsible to implement this method"
       
    59 
       
    60     ^ debugger inferiorStdout
       
    61 
       
    62     "Modified: / 01-06-2017 / 09:46:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    63 !
       
    64 
       
    65 consoleOutput
       
    66     "superclass VDBAbstractConsoleApplication says that I am responsible to implement this method"
       
    67 
       
    68     ^ debugger inferiorStdout
       
    69 
       
    70     "Modified: / 01-06-2017 / 09:45:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    71 ! !
       
    72 
       
    73 !VDBUnixInferiorConsoleApplication class methodsFor:'documentation'!
       
    74 
       
    75 version_HG
       
    76 
       
    77     ^ '$Changeset: <not expanded> $'
       
    78 ! !
       
    79