|
Class: CheckinInfoDialog (in Tools)
Object
|
+--Model
|
+--ApplicationModel
|
+--SimpleDialog
|
+--Tools::CheckinInfoDialog
- Package:
- stx:libtool
- Category:
- System-SourceCodeManagement
- Version:
- rev:
1.58
date: 2022/02/11 15:28:19
- user: cg
- file: Tools__CheckinInfoDialog.st directory: libtool
- module: stx stc-classLibrary: libtool
checkin-dialog.
used to be private in SourceCodeManagerUtilites.
moved to libtool because libbasic3 should not contain code inheriting from GUI classes.
[instance variables:]
[class variables:]
copyrightCOPYRIGHT (c) 2005 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.
constants
-
possibleReasons
-
-
reasonBugfix
-
-
reasonDebugCodeRemoved
-
-
reasonDocumentation
-
-
reasonFeature
-
-
reasonOther
-
-
reasonQuality
-
-
reasonRefactoring
-
-
reasonTuning
-
-
reasonUIEnhancement
-
-
reasonWorkaround
-
help specs
-
helpSpec
-
This resource specification was automatically generated
by the UIHelpTool of ST/X.
interface specs
-
windowSpec
-
This resource specification was automatically generated
by the UIPainter of ST/X.
Usage example(s):
UIPainter new openOnClass:Tools::CheckinInfoDialog andSelector:#windowSpec
Tools::CheckinInfoDialog new openInterface:#windowSpec
Tools::CheckinInfoDialog open
|
opening
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer
-
self getCheckinInfoFor:'hello' initialAnswer:'bla'
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer withQuickOption: withQuickOption
-
self getCheckinInfoFor:'hello' initialAnswer:'bla'
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer withQuickOption: withQuickOption logHistory: logHistoryArg
-
self getCheckinInfoFor:'hello' initialAnswer:'bla'
self getCheckinInfoFor:'hello' initialAnswer:'bla' withQuickOption:true
self getCheckinInfoFor:'hello' initialAnswer:'bla' withQuickOption:true logHistory:nil withConsistencyCheckOption:true
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer withQuickOption: withQuickOption logHistory: logHistoryArg withValidateConsistencyOption: withValidateConsistencyOption
-
self getCheckinInfoFor:'hello' initialAnswer:'bla'
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer withQuickOption: withQuickOption logHistory: logHistoryArg withValidateConsistencyOption: withValidateConsistencyOption initialReason: defaultReason
-
self getCheckinInfoFor:'hello' initialAnswer:'bla'
accessing
-
allowEmptyLogMessage
-
-
allowEmptyLogMessage: aBoolean
-
-
branchInfo: aString
-
-
checkinReason
-
returns one of: #(reasonBugfix reasonFeature reasonRefactoring reasonDocumentation reasonOther reasonWorkaround reasonDebugCodeRemoved)
-
checkinReason: aSymbolicReason
-
-
description
-
-
description: aString
-
-
isStable
-
-
isStable: aBoolean
-
-
logHistory: something
-
-
logMessage
-
-
logMessage: aString
-
-
quickCheckIn
-
-
quickCheckIn: aBoolean
-
-
repositoryInfo: aString
-
-
showChangesAction: aBlock
-
if non-nil, an additional 'Show Changes' button appears,
which evaluates this action
-
tag
-
-
tag: aStringOrNil
-
-
tagIt
-
-
validateConsistency
-
-
withQuickOption: aBoolean
-
self quickCheckInVisibleHolder value:aBoolean
-
withValidateConsistencyOption: aBoolean
-
self validateConsistencyVisibleHolder value:aBoolean
actions
-
showChanges
-
aspects
-
branchInfoHolder
-
-
checkinReasonHolder
-
-
descriptionHolder
-
-
isStableHolder
-
-
logHistoryHeadLineSelectionHolder
-
-
logHistoryHeadLines
-
-
logMessageHolder
-
-
notMarkAsStableHolder
-
-
quickCheckInEnabledHolder
-
-
quickCheckInHolder
-
-
quickCheckInVisibleHolder
-
-
recentTagsList
-
-
rememberTagAsDefaultHolder
-
-
repositoryInfoHolder
-
-
showChangesButtonVisible
-
-
tagHolder
-
CVSSourceCodeManager recentTag ?
-
validateConsistencyEnabledHolder
-
-
validateConsistencyHolder
-
-
validateConsistencyVisibleHolder
-
-
warningMessageHolder
-
opening
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer withQuickOption: withQuickOption isClassCheckin: isClassCheckin logHistory: logHistoryArg withValidateConsistencyOption: withValidateConsistencyOption
-
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer withQuickOption: withQuickOption isClassCheckin: isClassCheckin logHistory: logHistoryArg withValidateConsistencyOption: withValidateConsistencyOption initialReason: defaultReason
-
ask the user for a log-message to be attached to a commit.
Do not allow an empty input (i.e. ask again, until either canceled or a string was given)
Usage example(s):
self getCheckinInfoFor:'hello' initialAnswer:'bla'
|
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer withQuickOption: withQuickOption logHistory: logHistoryArg withValidateConsistencyOption: withValidateConsistencyOption
-
-
getCheckinInfoFor: infoString initialAnswer: initialAnswer withQuickOption: withQuickOption logHistory: logHistoryArg withValidateConsistencyOption: withValidateConsistencyOption initialReason: defaultReason
-
ask the user for a log-message to be attached to a commit.
Do not allow an empty input (i.e. ask again, until either canceled or a string was given)
|