|
Class: URITransmissionServiceAppl
Object
|
+--Model
|
+--ApplicationModel
|
+--URITransmissionServiceAppl
- Package:
- stx:goodies/communication
- Category:
- Net-Communication-URI
- Version:
- rev:
1.27
date: 2022/07/08 07:02:33
- user: cg
- file: URITransmissionServiceAppl.st directory: goodies/communication
- module: stx stc-classLibrary: communication
A service which automatically transfers files in the background
(given source and destination URIs)
[instance variables:]
[class variables:]
copyrightCOPYRIGHT (c) 2003 by eXept Software AG
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
accessing
-
pathName
-
help specs
-
helpSpec
-
This resource specification was automatically generated
by the UIHelpTool of ST/X.
instance creation
-
openForPathname: aPathname
-
-
openForPathname: aPathname canEditFilePath: aBoolean
-
interface specs
-
windowSpec
-
This resource specification was automatically generated
by the UIPainter of ST/X.
Usage example(s):
UIPainter new openOnClass:URITransmissionServiceAppl andSelector:#windowSpec
URITransmissionServiceAppl new openInterface:#windowSpec
URITransmissionServiceAppl open
|
menu specs
-
mainMenu
-
This resource specification was automatically generated
by the MenuEditor of ST/X.
Usage example(s):
MenuEditor new openOnClass:URITransmissionServiceAppl andSelector:#mainMenu
(Menu new fromLiteralArrayEncoding:(URITransmissionServiceAppl mainMenu)) startUp
|
-
menuToolbar
-
This resource specification was automatically generated
by the MenuEditor of ST/X.
Usage example(s):
MenuEditor new openOnClass:URITransmissionServiceAppl andSelector:#menuToolbar
(Menu new fromLiteralArrayEncoding:(URITransmissionServiceAppl menuToolbar)) startUp
|
-
menuTransmission
-
This resource specification was automatically generated
by the MenuEditor of ST/X.
Usage example(s):
MenuEditor new openOnClass:URITransmissionServiceAppl andSelector:#menuTransmission
(Menu new fromLiteralArrayEncoding:(URITransmissionServiceAppl menuTransmission)) startUp
|
tableColumns specs
-
transmissionColumns
-
This resource specification was automatically generated
by the DataSetBuilder of ST/X.
Usage example(s):
DataSetBuilder new openOnClass:URITransmissionServiceAppl andSelector:#transmissionColumns
|
accessing
-
accepted
-
-
canEditFilePath
-
-
canEditFilePath: aBoolean
-
-
listOfEntries
-
-
pathName
-
actions
-
doAddNewComment
-
-
doAddNewTransmission
-
-
doChangeToComment
-
-
doChangeToTransmission
-
-
doDeleteSelectedTransmission
-
-
doEditReadFromURI
-
automatically generated by UIEditor ...
-
doEditWriteToURI
-
automatically generated by UIEditor ...
-
doReloadTransmissionList
-
-
doTransmitForSelected
-
-
doWriteFile
-
-
evaluateEntries
-
aspects
-
inputGroup
-
automatically generated by UIPainter ...
-
inputPathHolder
-
automatically generated by UIPainter ...
-
isCommentSelected
-
-
isItemSelected
-
-
isTransmissionSelected
-
-
modifyHolder
-
automatically generated by UIPainter ...
-
reselectTransmission: aTransmissionRow
-
-
selectedTransmission
-
-
transmissionList
-
-
transmissionSelectionHolder
-
automatically generated by UIPainter ...
change & update
-
update: something with: aParameter from: changedObject
-
(comment from inherited method)
dependent is notified of some change -
Default is to try update:with:
initialization & release
-
closeDownViews
-
(comment from inherited method)
close down the application's view(s)
-
closeRequest
-
(comment from inherited method)
this is sent by my topView when about to be closed by the windowManager.
Could be redefined in subclasses to suppress close or confirm.
-
postOpenWith: aBuilder
-
This is a hook method generated by the Browser.
It will be invoked during the initialization of your app/dialog,
after all of the visual components have been built,
after the top window is made visible.
Add any app-specific actions here (reading files, setting up values etc.)
See also #postBuildWith:, which is invoked before opening.
menu actions
-
menuOpen
-
This method was generated by the Browser.
It will be invoked when the menu-item 'save' is selected.
-
menuSave
-
This method was generated by the Browser.
It will be invoked when the menu-item 'save' is selected.
-
menuSaveAs
-
This method will be invoked when the menu-item 'saveAs' is selected.
-
openDocumentation
-
This method was generated by the Browser.
It will be invoked when the menu-item 'help-documentation' is selected.
Also called when <F1> is pressed
private file queries
-
canWriteFile: aPath
-
Comment
TransmissionRow
URIDialog
Starting the application:
URITransmissionServiceAppl open
|
|