├── .appveyor.yml ├── .smalltalk.ston ├── .squot ├── .travis.yml ├── LICENSE ├── README.md ├── howto.zip ├── howto ├── howto-categories.gif ├── howto-createclass.gif ├── howto-createmethod.gif ├── howto-createscript.gif ├── howto-searchclass.gif └── howto-searchmethod.gif ├── images ├── drag-drop-3.png ├── logo.png └── simple-script-workflow.png ├── repository ├── .filetree ├── BaselineOfVivide.package │ ├── .filetree │ ├── .squot-contents │ ├── BaselineOfVivide.class │ │ ├── README.md │ │ ├── class │ │ │ └── ensureRepositoryAccessFor..st │ │ ├── instance │ │ │ ├── baseline..st │ │ │ ├── ensureAccessForFonts.st │ │ │ ├── postLoad.st │ │ │ ├── postLoadFonts.st │ │ │ └── preLoad.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ └── initializers.st │ └── properties.json ├── Vivide.package │ ├── .filetree │ ├── .squot-contents │ ├── Array.extension │ │ ├── instance │ │ │ └── storeCompactOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Association.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── asScript.st │ │ │ └── storeCompactOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Behavior.extension │ │ ├── instance │ │ │ ├── anyMethodAt..st │ │ │ ├── detectSubInstanceSuchThat..st │ │ │ ├── hasVivideTools.st │ │ │ ├── someSubInstance.st │ │ │ └── someSubInstances..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── BlockClosure.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── asScript.st │ │ │ ├── openScript.st │ │ │ ├── openScriptWith..st │ │ │ ├── storeCompactOn..st │ │ │ └── storeOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ByteArray.extension │ │ ├── instance │ │ │ ├── asList.st │ │ │ └── isList.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Categorizer.extension │ │ ├── instance │ │ │ └── removeAllCategories.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── CharacterSet.extension │ │ ├── instance │ │ │ ├── asList.st │ │ │ └── isList.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ClassDescription.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ └── retain.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ClassReference.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ └── retain.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Collection.extension │ │ ├── instance │ │ │ ├── asList.st │ │ │ └── isList.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Color.extension │ │ ├── instance │ │ │ └── acceptObjectService..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── CompiledBlock.extension │ │ ├── instance │ │ │ └── acceptObjectService..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── CompiledMethod.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ └── retain.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Context.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── package.stackOfSize..st │ │ │ ├── stackWithoutSignals.st │ │ │ └── vivideStackOfSize..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Date.extension │ │ ├── instance │ │ │ └── year.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── DateAndTime.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ └── relativePrintString.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Debugger.extension │ │ ├── instance │ │ │ └── acceptObjectService..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Dictionary.extension │ │ ├── class │ │ │ └── newFromAny..st │ │ ├── instance │ │ │ ├── asList.st │ │ │ ├── at.ifAbsentPut.ifPresentPut..st │ │ │ ├── isList.st │ │ │ └── storeCompactOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Form.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── isTransparent.st │ │ │ └── scaledToDisplay.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── HandMorph.extension │ │ ├── class │ │ │ └── eventStats.st │ │ ├── instance │ │ │ └── drag..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── HashedCollection.extension │ │ ├── instance │ │ │ └── asList.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Integer.extension │ │ ├── instance │ │ │ └── scaleValueToDisplay.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── MCVersion.extension │ │ ├── class │ │ │ └── allFrom.for..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── MessageTally.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── anySatisfy..st │ │ │ ├── clientClass.st │ │ │ ├── clientMethod.st │ │ │ ├── clientSelector.st │ │ │ ├── collect..st │ │ │ ├── count..st │ │ │ ├── detect..st │ │ │ ├── detect.ifFound.ifNone..st │ │ │ ├── do..st │ │ │ ├── receiverClass.st │ │ │ ├── receivers.st │ │ │ ├── receiversSortedByCall.st │ │ │ ├── select..st │ │ │ └── size.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── MethodReference.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── className.st │ │ │ └── retain.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Morph.extension │ │ ├── instance │ │ │ ├── boundsInOwner..st │ │ │ ├── edgeCell..st │ │ │ ├── edgeCell.st │ │ │ ├── edgeCellPositioning..st │ │ │ ├── edgeCellPositioning.st │ │ │ ├── edgeSide..st │ │ │ ├── edgeSide.st │ │ │ ├── extentInOwner..st │ │ │ ├── fastFramingOn.st │ │ │ ├── gridCell..st │ │ │ ├── gridCell.st │ │ │ ├── gridSpan..st │ │ │ ├── gridSpan.st │ │ │ ├── ide.st │ │ │ ├── isOverlayConnector.st │ │ │ ├── isPane.st │ │ │ ├── isPaneView.st │ │ │ ├── showFlash.st │ │ │ ├── showFlashCross.st │ │ │ ├── showFlashMini.st │ │ │ ├── shrinkWrap.st │ │ │ ├── topLeftInOwner..st │ │ │ └── updateCellPositioningForEdge.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── MouseButtonEvent.extension │ │ ├── instance │ │ │ ├── blueButtonChanged.st │ │ │ ├── blueButtonPressed.st │ │ │ ├── controlKeyPressed.st │ │ │ └── redButtonPressed.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Object.extension │ │ ├── instance │ │ │ ├── ^less.minus.st │ │ │ ├── ^tilde.tilde.more.st │ │ │ ├── ^tilde.tilde.tilde.st │ │ │ ├── acceptObjectService..st │ │ │ ├── asList.st │ │ │ ├── asScript.st │ │ │ ├── classBehindProxy.st │ │ │ ├── compactStoreString.st │ │ │ ├── drag.st │ │ │ ├── hasVivideTools.st │ │ │ ├── isList.st │ │ │ ├── isScript.st │ │ │ ├── isScriptDefinition.st │ │ │ ├── open.st │ │ │ ├── openWithScript..st │ │ │ ├── openWithScript.st │ │ │ ├── retain.st │ │ │ ├── storeCompactOn..st │ │ │ ├── unwrapList.st │ │ │ └── wrapList.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PackageInfo.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── hasVivideTools.st │ │ │ └── retain.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── PasteUpMorph.extension │ │ ├── instance │ │ │ ├── openArtifactsForTransferMorph..st │ │ │ └── showWindowForTransferMorph..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Point.extension │ │ ├── instance │ │ │ └── scaleValueToDisplay.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SequenceableCollection.extension │ │ ├── instance │ │ │ ├── asGroups.st │ │ │ ├── asScript.st │ │ │ ├── asTuples.st │ │ │ ├── expandGroup.st │ │ │ ├── flattenBy..st │ │ │ ├── openScript.st │ │ │ └── openScriptWith..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── String.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── asList.st │ │ │ ├── asScript.st │ │ │ ├── isList.st │ │ │ ├── unescapeEntities.st │ │ │ ├── withPunctuationTrimmed.st │ │ │ └── withoutLeading..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Symbol.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── asScript.st │ │ │ ├── asScriptDefinition.st │ │ │ ├── openScript.st │ │ │ └── openScriptWith..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── SystemNavigation.extension │ │ ├── instance │ │ │ ├── allClassesImplementingTrait..st │ │ │ ├── allFlagComments.st │ │ │ ├── allLocalAccessesTo.from..st │ │ │ ├── allMethods.st │ │ │ └── allSuperAccessesTo.from..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TViDrawFlags.trait │ │ ├── README.md │ │ ├── instance │ │ │ ├── clearDrawFlag..st │ │ │ ├── drawFlags.st │ │ │ └── setDrawFlag..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TViMemento.trait │ │ ├── README.md │ │ ├── instance │ │ │ ├── aboutToClose.st │ │ │ ├── acceptChanges.st │ │ │ ├── clear.st │ │ │ ├── close.st │ │ │ ├── closed.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── tryClear.st │ │ │ └── tryClose.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TViObjectNotifier.trait │ │ ├── README.md │ │ ├── instance │ │ │ ├── filter.st │ │ │ ├── notifyEvent..st │ │ │ ├── subscribe.st │ │ │ └── unsubscribe.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TViObjectView.trait │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptChanges.st │ │ │ ├── clear.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── pane.st │ │ │ ├── process..st │ │ │ ├── setUp..st │ │ │ └── yield..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TViObjectViewReset.trait │ │ ├── README.md │ │ ├── instance │ │ │ ├── reset.st │ │ │ ├── triggerReset.st │ │ │ └── tryReset.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TViObjectViewSupport.trait │ │ ├── README.md │ │ ├── instance │ │ │ ├── nodeForObject..st │ │ │ ├── nodesForObjects..st │ │ │ ├── openNode..st │ │ │ ├── rootNode.st │ │ │ ├── yieldAllObjects..st │ │ │ └── yieldObject..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TViOverlayMessages.trait │ │ ├── README.md │ │ ├── instance │ │ │ ├── messageBounds.st │ │ │ ├── messagePosition.st │ │ │ ├── showError..st │ │ │ ├── showInformation..st │ │ │ └── showWarning..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TViPaneDecoration.trait │ │ ├── README.md │ │ ├── instance │ │ │ ├── addCornerGrips.st │ │ │ ├── addEdgeGrips.st │ │ │ ├── changeHaloLayout.st │ │ │ ├── defaultColor.st │ │ │ ├── drawDropShadowOn..st │ │ │ ├── drawRolloverBorderOn..st │ │ │ ├── expandFullBoundsForRolloverBorder..st │ │ │ ├── hasRolloverBorder.st │ │ │ ├── layoutOutset..st │ │ │ ├── layoutOutset.st │ │ │ ├── noteNewOwner..st │ │ │ ├── outerBorderColor..st │ │ │ ├── outerBorderColor.st │ │ │ ├── outerBorderWidth..st │ │ │ ├── outerBorderWidth.st │ │ │ ├── outerColor..st │ │ │ ├── outerColor.st │ │ │ ├── outerLayoutBounds.st │ │ │ ├── outerLayoutExtent.st │ │ │ ├── pane.st │ │ │ ├── updateDropShadowCache.st │ │ │ └── wantsHaloFromClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TestCase.extension │ │ ├── instance │ │ │ └── acceptObjectService..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── Text.extension │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── asList.st │ │ │ └── isList.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── TransferMorph.extension │ │ ├── instance │ │ │ └── hasFlag..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── UUID.extension │ │ ├── instance │ │ │ ├── asThumbnail.st │ │ │ └── asThumbnailOfSize..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── UndefinedObject.extension │ │ ├── instance │ │ │ ├── asList.st │ │ │ └── wrapList.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViActiveProfile.class │ │ ├── README.md │ │ ├── class │ │ │ └── default.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViActiveScriptNotifier.class │ │ ├── README.md │ │ ├── class │ │ │ └── default.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViActiveScriptOrganizer.class │ │ ├── README.md │ │ ├── class │ │ │ └── default.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViActiveVivide.class │ │ ├── README.md │ │ ├── class │ │ │ ├── default.st │ │ │ └── world.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViActivityChart.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── graph.st │ │ │ ├── graphs.st │ │ │ ├── handleMouseMove..st │ │ │ ├── initialize.st │ │ │ ├── initializeGraph.st │ │ │ ├── numberOfPoints.st │ │ │ ├── process..st │ │ │ ├── pushValue..st │ │ │ ├── setUp..st │ │ │ ├── updateHighlight..st │ │ │ └── updateValues.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViAnimatedImageMorph.class │ │ ├── README.md │ │ ├── class │ │ │ ├── flashOn..st │ │ │ └── flyOutOn.with..st │ │ ├── instance │ │ │ ├── flyOut.st │ │ │ ├── hasVivideTools.st │ │ │ ├── image..st │ │ │ ├── initialize.st │ │ │ ├── scaleToSize..st │ │ │ └── step.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArgumentsCollected.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactContainer.class │ │ ├── README.md │ │ ├── class │ │ │ ├── artifactName.st │ │ │ └── supportedTypes.st │ │ ├── instance │ │ │ ├── aboutToClose.st │ │ │ ├── acceptChanges.st │ │ │ ├── addArtifact.st │ │ │ ├── artifact..st │ │ │ ├── artifact.st │ │ │ ├── artifactChanged..st │ │ │ ├── artifactCreated..st │ │ │ ├── artifactRequested..st │ │ │ ├── clear.st │ │ │ ├── close.st │ │ │ ├── closed.st │ │ │ ├── collapse.st │ │ │ ├── collapsed.st │ │ │ ├── context..st │ │ │ ├── context.st │ │ │ ├── contextRequested..st │ │ │ ├── defaultWidth.st │ │ │ ├── deferredClear.st │ │ │ ├── doOperation.argument.inGroup..st │ │ │ ├── doOperation.inGroup..st │ │ │ ├── expand.st │ │ │ ├── expanded.st │ │ │ ├── focusChanged..st │ │ │ ├── focusLostDownwards.st │ │ │ ├── focusLostUpwards.st │ │ │ ├── grabKeyboard.st │ │ │ ├── group.st │ │ │ ├── handleMouseMove..st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── hideToolbar.st │ │ │ ├── inform..st │ │ │ ├── inform.at..st │ │ │ ├── inform.for..st │ │ │ ├── informationSent..st │ │ │ ├── initialize.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeEventHandler.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── initializeSummaryContainer.st │ │ │ ├── initializeToolbar.st │ │ │ ├── initializeToolbarControls.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── isAffectedBy..st │ │ │ ├── isCollapsed.st │ │ │ ├── isExpanded.st │ │ │ ├── isObject..st │ │ │ ├── isToolbarVisible.st │ │ │ ├── justDroppedInto.event..st │ │ │ ├── knowsObject..st │ │ │ ├── lockSize.st │ │ │ ├── morphsOfInterest.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── objectChanged.st │ │ │ ├── onContextChanged.st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── pane.st │ │ │ ├── requestArtifact..st │ │ │ ├── resizeHandle..st │ │ │ ├── resizeHandle.st │ │ │ ├── showToolbar..st │ │ │ ├── showToolbar.st │ │ │ ├── summaryBtn.st │ │ │ ├── summaryContainer..st │ │ │ ├── summaryContainer.st │ │ │ ├── toolbar..st │ │ │ ├── toolbar.st │ │ │ ├── triggerDeferredClear.st │ │ │ ├── tryClose.st │ │ │ ├── tryDeferredClear.st │ │ │ ├── unlockSize.st │ │ │ ├── unsubscribeFromNotifiers.st │ │ │ ├── updateContext.st │ │ │ ├── updateSubmorphs.st │ │ │ ├── updateSummaryBtn.st │ │ │ ├── warn..st │ │ │ ├── warn.at..st │ │ │ ├── warn.for..st │ │ │ └── warningSent..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactContainerColumn.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptArtifact.fromEditor.event..st │ │ │ ├── acceptObjects.fromEditor.event..st │ │ │ ├── adoptPaneColor..st │ │ │ ├── appendCodeSnippet.st │ │ │ ├── artifactAdded..st │ │ │ ├── artifactContainers.st │ │ │ ├── artifactRemoved..st │ │ │ ├── artifactRequested..st │ │ │ ├── artifactsAdded..st │ │ │ ├── artifactsRemoved..st │ │ │ ├── clear.st │ │ │ ├── drawConnectionsOn..st │ │ │ ├── drawGroupLabelsOn..st │ │ │ ├── drawInnerShadowOn..st │ │ │ ├── drawOn..st │ │ │ ├── drawOverlayOn..st │ │ │ ├── dropRectanglesForPoint..st │ │ │ ├── editors..st │ │ │ ├── editors.st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── initialize.st │ │ │ ├── initializeEventHandler.st │ │ │ ├── lastArtifactRemoved.st │ │ │ ├── objectSelectionChanged..st │ │ │ ├── onFocusReceivedInSubmorph..st │ │ │ ├── privateAddAllMorphs.atIndex..st │ │ │ ├── privateAddMorph.atIndex..st │ │ │ ├── removeAllMorphsIn..st │ │ │ ├── removeMorph..st │ │ │ └── removedMorph..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactContainerColumnLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ └── layout.in..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactContainerLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ └── layout.in..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactListView2.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptChanges.st │ │ │ ├── addArtifact..st │ │ │ ├── addArtifact.after..st │ │ │ ├── addArtifact.ifNotFocusedAfter..st │ │ │ ├── addArtifacts..st │ │ │ ├── addArtifacts.after..st │ │ │ ├── addObject..st │ │ │ ├── addObject.after..st │ │ │ ├── addObjects..st │ │ │ ├── addObjects.after..st │ │ │ ├── adoptPaneColor..st │ │ │ ├── artifactContainerColumn.st │ │ │ ├── artifactContainers..st │ │ │ ├── artifactContainers.st │ │ │ ├── artifactRequested..st │ │ │ ├── clear.st │ │ │ ├── collapseAllArtifacts.st │ │ │ ├── doNonReentrant..st │ │ │ ├── expandAllArtifacts.st │ │ │ ├── filterEvent.for..st │ │ │ ├── focusedArtifact.st │ │ │ ├── grabKeyboard.st │ │ │ ├── handleListenEvent..st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initialize.st │ │ │ ├── initializeUi.st │ │ │ ├── initializeUiObjectChanges.st │ │ │ ├── initializeUiSystemChanges.st │ │ │ ├── isDoingNonReentrantWork.st │ │ │ ├── messageBounds.st │ │ │ ├── minimalWidth.st │ │ │ ├── model.st │ │ │ ├── nodesForObjects..st │ │ │ ├── objectSelectionChanged..st │ │ │ ├── objects..st │ │ │ ├── objects.st │ │ │ ├── onClassChange..st │ │ │ ├── onFocusChanged..st │ │ │ ├── onMethodChange..st │ │ │ ├── onObjectChange..st │ │ │ ├── onObjectsChanged.st │ │ │ ├── onSelectionChanged..st │ │ │ ├── openArtifact..st │ │ │ ├── openArtifacts..st │ │ │ ├── openExplorer..st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── passKeyboardFocusDown.st │ │ │ ├── passKeyboardFocusFrom..st │ │ │ ├── passKeyboardFocusTo..st │ │ │ ├── passKeyboardFocusUp.st │ │ │ ├── process..st │ │ │ ├── rememberAllArtifacts.st │ │ │ ├── rememberArtifact..st │ │ │ ├── reset.st │ │ │ ├── rootNode.st │ │ │ ├── selectedNodes.st │ │ │ ├── updateContextForArtifact..st │ │ │ ├── updateModelInput..st │ │ │ └── updateModelInput.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactLookupService.class │ │ ├── README.md │ │ ├── class │ │ │ └── classForOperation..st │ │ ├── instance │ │ │ ├── doClassComment..st │ │ │ ├── doClassDescription..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doMethodReference..st │ │ │ ├── doMethodVersion..st │ │ │ ├── doObject..st │ │ │ ├── doObjectGate..st │ │ │ ├── doProtocol..st │ │ │ ├── doSourceCodeSnippet..st │ │ │ ├── doTestReference..st │ │ │ └── doText..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactSummaryMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── closeBtn.st │ │ │ ├── expandBtn.st │ │ │ ├── initialize.st │ │ │ ├── moveBtn.st │ │ │ └── summaryBtn.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactToolbar.class │ │ ├── README.md │ │ ├── class │ │ │ └── hideAllToolbars.st │ │ ├── instance │ │ │ ├── addButton.edge..st │ │ │ ├── addSpacerToEdge..st │ │ │ ├── initialize.st │ │ │ ├── leftPanel.st │ │ │ ├── popUpFor..st │ │ │ ├── rejectsEvent..st │ │ │ ├── rightPanel.st │ │ │ ├── topPanel.st │ │ │ ├── tryDelete.from..st │ │ │ ├── updateAlpha..st │ │ │ └── wantsHaloFromClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactToolbarLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ └── layout.in..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactToolbarPanel.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── alpha..st │ │ │ ├── alpha.st │ │ │ ├── fadeEnabled..st │ │ │ ├── fadeEnabled.st │ │ │ ├── fullDrawOn..st │ │ │ ├── hasContent.st │ │ │ ├── initialize.st │ │ │ └── initializeEventHandler.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViArtifactView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptChanges.st │ │ │ ├── clear.st │ │ │ ├── container.st │ │ │ ├── grabKeyboard.st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initialize.st │ │ │ ├── initializeForContainerClass..st │ │ │ ├── model.st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── selectObjects..st │ │ │ ├── selectedNodes.st │ │ │ ├── setupBlock..st │ │ │ └── setupBlock.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViAsyncError.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViBarChart.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── animateGrowingBar.after..st │ │ │ ├── animateGrowingBars.st │ │ │ ├── columns.st │ │ │ ├── createColumnForNode..st │ │ │ ├── createColumnForScale.st │ │ │ ├── createInvisibleColumnForMax.st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── initialize.st │ │ │ ├── initializeEventHandler.st │ │ │ ├── initializeScroller.st │ │ │ ├── labelHeight.st │ │ │ ├── maxBarHeight.st │ │ │ ├── maxColumn.st │ │ │ ├── mouseEnter.on..st │ │ │ ├── mouseLeave.on..st │ │ │ ├── process..st │ │ │ ├── scaleColumn.st │ │ │ ├── setUp..st │ │ │ ├── startDrag.event.source..st │ │ │ ├── updateScale..st │ │ │ └── zoomFit.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViButtonBarView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── adoptPaneColor..st │ │ │ ├── clear.st │ │ │ ├── initialize.st │ │ │ ├── model.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── setUp..st │ │ │ ├── specs..st │ │ │ └── specs.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViButtonSpec.class │ │ ├── README.md │ │ ├── class │ │ │ └── newFrom..st │ │ ├── instance │ │ │ ├── clickedFor..st │ │ │ ├── clickedSelector..st │ │ │ ├── clickedSelector.st │ │ │ ├── doClick..st │ │ │ ├── enabledFor..st │ │ │ ├── enabledSelector..st │ │ │ ├── enabledSelector.st │ │ │ ├── itemFor..st │ │ │ ├── overrideButtonFont..st │ │ │ └── overrideButtonFont.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViCallstackModel.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── childAt.inGroup..st │ │ │ ├── childCountInGroup..st │ │ │ ├── context..st │ │ │ ├── context.st │ │ │ ├── groups.st │ │ │ └── updateGroups.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViClassComment.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── acceptObjectService..st │ │ │ ├── comment..st │ │ │ ├── comment.st │ │ │ ├── hash.st │ │ │ ├── theClass..st │ │ │ └── theClass.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViClassCommentEditor.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── group.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── isAffectedBy..st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── resetSource.st │ │ │ ├── setClassComment..st │ │ │ ├── theClass.st │ │ │ └── updateText..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViClassDefinitionEdit.class │ │ ├── README.md │ │ ├── class │ │ │ ├── widgetClassIcon.st │ │ │ └── widgetClassName.st │ │ ├── instance │ │ │ ├── compile.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ └── theClass..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViClassDefinitionEditor.class │ │ ├── README.md │ │ ├── class │ │ │ ├── artifactName.st │ │ │ ├── defaultClassDefinition.st │ │ │ └── defaultTraitDefinition.st │ │ ├── instance │ │ │ ├── addArtifact.st │ │ │ ├── addInstVarAccessors.st │ │ │ ├── addMethod.st │ │ │ ├── addMethodClass.st │ │ │ ├── addProtocol.st │ │ │ ├── addProtocolClass.st │ │ │ ├── autoCategorizeMethods.st │ │ │ ├── autoCategorizeMethodsInto..st │ │ │ ├── clear.st │ │ │ ├── context..st │ │ │ ├── context.st │ │ │ ├── createInstance.st │ │ │ ├── createMorphInHand.st │ │ │ ├── deleteClass.st │ │ │ ├── group.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── isAffectedBy..st │ │ │ ├── knowsObject..st │ │ │ ├── lockSize.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── optimalWidth.st │ │ │ ├── removeEmptyCategories.st │ │ │ ├── resetSource.st │ │ │ ├── runAllTests.st │ │ │ ├── setDefaultClassDefinition.st │ │ │ ├── theClass..st │ │ │ ├── theClass.st │ │ │ ├── theClassDefinition..st │ │ │ ├── theClassDefinition.st │ │ │ ├── tryDeleteClass.st │ │ │ ├── unlockSize.st │ │ │ └── updateClass.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViClassDefinitionEditorView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── initialize.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViCodeSnippetEditor.class │ │ ├── README.md │ │ ├── class │ │ │ └── supportedTypes.st │ │ ├── instance │ │ │ ├── acceptChanges.st │ │ │ ├── bindings.st │ │ │ ├── clear.st │ │ │ ├── context..st │ │ │ ├── context.st │ │ │ ├── defaultSnippet.st │ │ │ ├── executeCommand..st │ │ │ ├── grabKeyboard.st │ │ │ ├── group.st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── onContextChanged.st │ │ │ ├── optimalWidth.st │ │ │ ├── showEvaluationResult..st │ │ │ ├── snippetEdit.st │ │ │ └── updateSnippet.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViColorMapView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── drawOn..st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── process..st │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViColorService.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── doObject..st │ │ │ └── doProtocol..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViColumn.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── delete.st │ │ │ ├── deleted.st │ │ │ ├── editors.st │ │ │ ├── initialize.st │ │ │ ├── minimalWidth.st │ │ │ ├── optimalWidth.st │ │ │ └── removedMorph..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViColumnsView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addColumnFor..st │ │ │ ├── columns.st │ │ │ ├── initialize.st │ │ │ ├── model.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ └── updateColumnsIn.for..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViCommandsView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addCommandForSnippet..st │ │ │ ├── executeCommand..st │ │ │ ├── executeCommandForSnippet..st │ │ │ ├── flash.st │ │ │ ├── initialize.st │ │ │ ├── model..st │ │ │ ├── model.st │ │ │ └── reset.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViConstraintLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── alignNeighbours.for..st │ │ │ ├── boundsForSubmorphs..st │ │ │ ├── cellInset..st │ │ │ ├── cellInset.st │ │ │ ├── fixLayoutFor.pivot..st │ │ │ ├── layout.in..st │ │ │ ├── pushMorphsAway.by..st │ │ │ ├── resize.in..st │ │ │ ├── shrinkToSubmorphsOf.in..st │ │ │ ├── shrinkWrap.from..st │ │ │ ├── snapNeighbours.for..st │ │ │ ├── snapValue..st │ │ │ └── snapValue.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViContactCard.class │ │ ├── README.md │ │ ├── class │ │ │ ├── contactsFrom..st │ │ │ └── example.st │ │ ├── instance │ │ │ ├── appendRaw..st │ │ │ ├── convertVersion.st │ │ │ ├── email.st │ │ │ ├── exportInto..st │ │ │ ├── fullname.st │ │ │ ├── hasTelefone.st │ │ │ ├── organization.st │ │ │ └── raw.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViContextMenu.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addIcon.icon.text.receiver.selector..st │ │ │ ├── addIcon.icon.text.receiver.selector.argument..st │ │ │ ├── addIcon.text.receiver.selector..st │ │ │ ├── addIcon.text.receiver.selector.argument..st │ │ │ ├── addSeparator.st │ │ │ ├── addText.receiver.selector.argument..st │ │ │ ├── buttons.st │ │ │ ├── closeOnAction..st │ │ │ ├── closeOnAction.st │ │ │ ├── drawOn..st │ │ │ ├── handleMouseMove..st │ │ │ ├── initialize.st │ │ │ ├── initializeEventHandler.st │ │ │ ├── popUpAt..st │ │ │ ├── popUpForMorph..st │ │ │ ├── tryDelete..st │ │ │ ├── updateAlpha..st │ │ │ ├── updateAlphaFor..st │ │ │ ├── updateConnections.st │ │ │ └── yellowButtonActivity..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViContextMenuGroupSpec.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── itemFor.groupIndex.isTopLevel..st │ │ │ └── lineColor.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViConverter.class │ │ ├── README.md │ │ ├── class │ │ │ └── default.st │ │ ├── instance │ │ │ ├── cleanUp.st │ │ │ ├── cleanUpOrganization.st │ │ │ ├── export.st │ │ │ ├── exportAllCommands.st │ │ │ ├── exportAllSteps.st │ │ │ ├── exportOrganization.st │ │ │ ├── exportProfile.st │ │ │ ├── exportStep..st │ │ │ ├── extractCommands.st │ │ │ ├── extractCommandsFromOrganization..st │ │ │ ├── extractCommandsFromProfile..st │ │ │ ├── extractSteps.st │ │ │ ├── extractStepsFromOrganization..st │ │ │ ├── extractStepsFromProfile..st │ │ │ ├── import.st │ │ │ ├── importAllCommands.st │ │ │ ├── importAllDefinitions.st │ │ │ ├── importAllSteps.st │ │ │ ├── importOrganization.st │ │ │ ├── importProfile.st │ │ │ ├── importStep..st │ │ │ ├── into.during..st │ │ │ ├── mergeCommand..st │ │ │ ├── mergeCommand.intoOrganization..st │ │ │ ├── mergeCommand.intoProfile..st │ │ │ ├── mergeDefinition..st │ │ │ ├── mergeDefinition.intoOrganization..st │ │ │ ├── mergeDefinition.intoProfile..st │ │ │ ├── mergeProfile..st │ │ │ ├── mergeStep..st │ │ │ ├── mergeStep.intoOrganization..st │ │ │ ├── mergeStep.intoProfile..st │ │ │ ├── organization..st │ │ │ ├── organization.st │ │ │ ├── profile..st │ │ │ ├── profile.st │ │ │ ├── readCommands.st │ │ │ ├── readDefinitions.st │ │ │ ├── readProfile.st │ │ │ ├── readSteps.st │ │ │ ├── writeCommand..st │ │ │ ├── writeDefinition..st │ │ │ ├── writeProfile..st │ │ │ └── writeStep..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViConverterForClassArchive.class │ │ ├── README.md │ │ ├── class │ │ │ ├── createArchiveNamed..st │ │ │ ├── createArchiveNamed.inCategory..st │ │ │ ├── fromClass.intoOrganization..st │ │ │ ├── fromClass.intoProfile..st │ │ │ ├── fromOrganization.intoClass..st │ │ │ └── fromProfile.intoClass..st │ │ ├── instance │ │ │ ├── cleanUp.st │ │ │ ├── compileMessage.sourceCode.classified..st │ │ │ ├── methodReferenceForCommand..st │ │ │ ├── methodReferenceForDefinition..st │ │ │ ├── methodReferenceForProfile..st │ │ │ ├── methodReferenceForStep..st │ │ │ ├── printOn..st │ │ │ ├── readCommands.st │ │ │ ├── readDefinitions.st │ │ │ ├── readProfile.st │ │ │ ├── readSteps.st │ │ │ ├── selectorForCommand..st │ │ │ ├── selectorForDefinition..st │ │ │ ├── selectorForProfile..st │ │ │ ├── selectorForStep..st │ │ │ ├── theClass..st │ │ │ ├── theClass.st │ │ │ ├── writeCommand..st │ │ │ ├── writeDefinition..st │ │ │ ├── writeProfile..st │ │ │ └── writeStep..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViConverterForClipboard.class │ │ ├── README.md │ │ ├── class │ │ │ └── default.st │ │ ├── instance │ │ │ ├── clipboard..st │ │ │ ├── clipboard.st │ │ │ ├── exportStep..st │ │ │ ├── writeStep..st │ │ │ └── writeStep.withInput..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViDesktopView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptDroppingMorph.event..st │ │ │ ├── addPane..st │ │ │ ├── addedMorph..st │ │ │ ├── createPane..st │ │ │ ├── doNonReentrant..st │ │ │ ├── handlesMouseDown..st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── initialize.st │ │ │ ├── isDoingNonReentrantWork.st │ │ │ ├── isPane.forNode..st │ │ │ ├── isPaneView.st │ │ │ ├── model..st │ │ │ ├── model.st │ │ │ ├── nodes..st │ │ │ ├── nodes.st │ │ │ ├── objects..st │ │ │ ├── objects.for..st │ │ │ ├── objects.st │ │ │ ├── openInWindow..st │ │ │ ├── panes..st │ │ │ ├── panes.st │ │ │ ├── process..st │ │ │ ├── removePane..st │ │ │ ├── removedMorph..st │ │ │ ├── reset.st │ │ │ ├── setUp..st │ │ │ ├── showWindowForTransferMorph..st │ │ │ ├── updateModelInput..st │ │ │ ├── updateModelInput.st │ │ │ └── wantsHaloFromClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViDiffObject.class │ │ ├── README.md │ │ ├── class │ │ │ ├── isOfPrimitiveType..st │ │ │ └── with.with..st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── acceptObjectService..st │ │ │ ├── asExplorerString.st │ │ │ ├── asList.st │ │ │ ├── copyFrom..st │ │ │ ├── doesNotUnderstand..st │ │ │ ├── explorerContents.st │ │ │ ├── hasContentsInExplorer.st │ │ │ ├── hash.st │ │ │ ├── in..st │ │ │ ├── mergeSources.st │ │ │ ├── mergeSourcesMatching..st │ │ │ ├── primarySource..st │ │ │ ├── primarySource.st │ │ │ ├── printOn..st │ │ │ ├── printString.st │ │ │ ├── respondsTo..st │ │ │ ├── secondarySource..st │ │ │ ├── secondarySource.st │ │ │ └── shouldBePrintedAsLiteralVisiting..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViDraggableButton.class │ │ ├── README.md │ │ ├── class │ │ │ ├── widgetCategory.st │ │ │ └── widgetClassName.st │ │ ├── instance │ │ │ ├── clearOverlayIcon.st │ │ │ ├── dragFlagSpecs..st │ │ │ ├── dragFlagSpecs.st │ │ │ ├── dragFlags..st │ │ │ ├── dragFlags.st │ │ │ ├── dragTransferType..st │ │ │ ├── dragTransferType.st │ │ │ ├── drawOverlayOn..st │ │ │ ├── initialize.st │ │ │ ├── initializeEventHandler.st │ │ │ ├── mouseStartDrag..st │ │ │ ├── passenger..st │ │ │ ├── passenger.st │ │ │ ├── setOverlayIconFromNumber.colorFont.colorBackground..st │ │ │ ├── source..st │ │ │ ├── source.st │ │ │ ├── startDrag.st │ │ │ ├── startDragWithHand..st │ │ │ ├── target..st │ │ │ └── updateSubmorphs.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViDropTarget.class │ │ ├── README.md │ │ ├── class │ │ │ ├── isWidgetClass.st │ │ │ ├── widgetCategory.st │ │ │ ├── widgetClassIcon.st │ │ │ └── widgetClassName.st │ │ ├── instance │ │ │ ├── acceptArtifact.fromEditor.event..st │ │ │ ├── acceptDroppingMorph.event..st │ │ │ ├── acceptObjects.fromEditor.event..st │ │ │ ├── acceptedDropAreas..st │ │ │ ├── acceptedDropAreas.st │ │ │ ├── acceptedDropBlock..st │ │ │ ├── acceptedDropBlock.st │ │ │ ├── areaThicknessLeft.st │ │ │ ├── areaThicknessRight.st │ │ │ ├── clearDropRectangle.st │ │ │ ├── convertPassengerBlock..st │ │ │ ├── convertPassengerBlock.st │ │ │ ├── drawDropTargetOn..st │ │ │ ├── dropAreaForEvent..st │ │ │ ├── dropColor..st │ │ │ ├── dropColor.st │ │ │ ├── dropEditor.event..st │ │ │ ├── dropRectangleForEvent..st │ │ │ ├── dropRectanglesForPoint..st │ │ │ ├── editorDropped..st │ │ │ ├── editorDroppedAfterMe..st │ │ │ ├── editorDroppedInFrontOfMe..st │ │ │ ├── fullDrawOn..st │ │ │ ├── handleMouseMove..st │ │ │ ├── initialize.st │ │ │ ├── initializeEventHandler.st │ │ │ └── wantsDroppedMorph.event..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViEclipseIcons.class │ │ ├── README.md │ │ ├── class │ │ │ ├── abstractCoContents.st │ │ │ ├── abstractCoIcon.st │ │ │ ├── breakpointViewContents.st │ │ │ ├── breakpointViewIcon.st │ │ │ ├── classAbstractObjContents.st │ │ │ ├── classAbstractObjIcon.st │ │ │ ├── classHiContents.st │ │ │ ├── classHiIcon.st │ │ │ ├── classObjContents.st │ │ │ ├── classObjIcon.st │ │ │ ├── consoleViewContents.st │ │ │ ├── consoleViewIcon.st │ │ │ ├── fieldPrivateObjContents.st │ │ │ ├── fieldPrivateObjIcon.st │ │ │ ├── fieldPrivateStaticObjContents.st │ │ │ ├── fieldPrivateStaticObjIcon.st │ │ │ ├── hprioTskContents.st │ │ │ ├── hprioTskIcon.st │ │ │ ├── intObjContents.st │ │ │ ├── intObjIcon.st │ │ │ ├── license.st │ │ │ ├── logicalPackageObjContents.st │ │ │ ├── logicalPackageObjIcon.st │ │ │ ├── methpriObjContents.st │ │ │ ├── methpriObjIcon.st │ │ │ ├── methpriOverObjContents.st │ │ │ ├── methpriOverObjIcon.st │ │ │ ├── methpriStaticObjContents.st │ │ │ ├── methpriStaticObjIcon.st │ │ │ ├── methpriStaticOverObjContents.st │ │ │ ├── methpriStaticOverObjIcon.st │ │ │ ├── methpubObjContents.st │ │ │ ├── methpubObjIcon.st │ │ │ ├── methpubOverObjContents.st │ │ │ ├── methpubOverObjIcon.st │ │ │ ├── methpubStaticObjContents.st │ │ │ ├── methpubStaticObjIcon.st │ │ │ ├── methpubStaticOverObjContents.st │ │ │ ├── methpubStaticOverObjIcon.st │ │ │ ├── overCoContents.st │ │ │ ├── overCoIcon.st │ │ │ ├── packageContents.st │ │ │ ├── packageIcon.st │ │ │ ├── packageObjContents.st │ │ │ ├── packageObjIcon.st │ │ │ ├── packagefolderObjContents.st │ │ │ ├── packagefolderObjIcon.st │ │ │ ├── packdObjContents.st │ │ │ ├── packdObjIcon.st │ │ │ ├── staticCoContents.st │ │ │ ├── staticCoIcon.st │ │ │ ├── tasksTskContents.st │ │ │ └── tasksTskIcon.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViEditorView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── reset.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViEventNotifier.class │ │ ├── README.md │ │ ├── class │ │ │ ├── named..st │ │ │ └── trigger..st │ │ ├── instance │ │ │ ├── name..st │ │ │ ├── name.st │ │ │ └── trigger.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViExceptionHistory.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViExplorerView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ ├── selectObjects..st │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViFeedbackReportDialog.class │ │ ├── README.md │ │ ├── class │ │ │ └── open.st │ │ ├── instance │ │ │ ├── currentMood.st │ │ │ ├── currentTopic.st │ │ │ ├── debuggers.st │ │ │ ├── emailAddress..st │ │ │ ├── emailAddress.st │ │ │ ├── generate.st │ │ │ ├── initialize.st │ │ │ ├── initializeCallStacks.st │ │ │ ├── initializePersonalInformation.st │ │ │ ├── initializeQueries.st │ │ │ ├── initializeScreenshots.st │ │ │ ├── initializeUi.st │ │ │ ├── initializeVersions.st │ │ │ ├── maskedFormFor..st │ │ │ ├── open.st │ │ │ ├── openDebuggers.st │ │ │ ├── openScreenshot..st │ │ │ ├── queries.st │ │ │ ├── screenshots.st │ │ │ ├── selectAllScreenshots.st │ │ │ ├── selectNoneScreenshots.st │ │ │ ├── stackIndex..st │ │ │ ├── ui.st │ │ │ └── versions.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViFeedbackReportDialogUi.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── backgroundContainer.st │ │ │ ├── emailEdit.st │ │ │ ├── emoHappyBtn.st │ │ │ ├── emoNeutralBtn.st │ │ │ ├── emoSadBtn.st │ │ │ ├── emoSillyBtn.st │ │ │ ├── ideaBtn.st │ │ │ ├── initializePanel.st │ │ │ ├── messageEdit.st │ │ │ ├── praiseBtn.st │ │ │ ├── problemBtn.st │ │ │ ├── questionBtn.st │ │ │ ├── screenshotList.st │ │ │ ├── selectAllBtn.st │ │ │ ├── selectNoneBtn.st │ │ │ ├── sendBtn.st │ │ │ ├── stackCombo.st │ │ │ ├── stackContainer.st │ │ │ └── stackEdit.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViFeedbackReportGenerator.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── dataForDebuggers..st │ │ │ ├── dataForDebuggers.st │ │ │ ├── dataForQueries..st │ │ │ ├── dataForQueries.st │ │ │ ├── dataForVersions..st │ │ │ ├── dataForVersions.st │ │ │ ├── dataForWorldSubmorphs..st │ │ │ ├── dataForWorldSubmorphs.st │ │ │ ├── emailAddress..st │ │ │ ├── emailAddress.st │ │ │ ├── generateReportArchive.st │ │ │ ├── generateReportFiles.st │ │ │ ├── htmlTemplate.st │ │ │ ├── message..st │ │ │ ├── message.st │ │ │ ├── mood..st │ │ │ ├── mood.st │ │ │ ├── reportId.st │ │ │ ├── sendReportToDisk.st │ │ │ ├── sendReportToWeb.st │ │ │ ├── topic..st │ │ │ └── topic.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViFixedConnection.class │ │ ├── README.md │ │ ├── class │ │ │ ├── connectionKind.st │ │ │ └── icon.st │ │ ├── instance │ │ │ ├── isSelection.st │ │ │ ├── mustBeUnique.st │ │ │ ├── objects..st │ │ │ └── objects.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViFlagComment.class │ │ ├── README.md │ │ ├── class │ │ │ ├── newListFromMethod.message..st │ │ │ ├── newListFromReference..st │ │ │ └── newListFromReference.message..st │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── comment..st │ │ │ ├── comment.st │ │ │ ├── interval..st │ │ │ ├── interval.st │ │ │ ├── line.st │ │ │ ├── priority.st │ │ │ ├── reference..st │ │ │ ├── reference.st │ │ │ ├── symbol..st │ │ │ └── symbol.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViFrequentlyUsedHistory.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addObject..st │ │ │ ├── ensureLimit.st │ │ │ ├── frequencies.st │ │ │ ├── normalizeFrequencies.st │ │ │ ├── removeObject.ifAbsent..st │ │ │ └── updateOrder.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViGraphAxis.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addMargins..st │ │ │ ├── doLayoutIn..st │ │ │ ├── drawHorizontallyOn..st │ │ │ ├── drawOn..st │ │ │ ├── drawVerticallyOn..st │ │ │ ├── firstVal..st │ │ │ ├── firstVal.st │ │ │ ├── fontToUse.st │ │ │ ├── incVal..st │ │ │ ├── incVal.st │ │ │ ├── initialize.st │ │ │ ├── label..st │ │ │ ├── label.st │ │ │ ├── labelsForValues..st │ │ │ ├── labelsForValues.st │ │ │ ├── maxVal..st │ │ │ ├── maxVal.st │ │ │ ├── maxValString.st │ │ │ ├── minHeight.st │ │ │ ├── minVal..st │ │ │ ├── minVal.st │ │ │ ├── minWidth.st │ │ │ ├── orientation..st │ │ │ ├── orientation.st │ │ │ ├── precision..st │ │ │ ├── precision.st │ │ │ ├── ratioOf..st │ │ │ └── scaleFactor.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViGroupedToolbar.class │ │ ├── README.md │ │ ├── class │ │ │ └── ex01.st │ │ ├── instance │ │ │ ├── addGroup.icon..st │ │ │ ├── addGroup.icon.contents..st │ │ │ ├── addGroup.icon.contents.helpText..st │ │ │ ├── collapse.st │ │ │ ├── currentGroup.st │ │ │ ├── currentGroupIndex.st │ │ │ ├── currentGroupName.st │ │ │ ├── drawBackgroundOn..st │ │ │ ├── drawGroupHighlightOn..st │ │ │ ├── drawOn..st │ │ │ ├── editor..st │ │ │ ├── editor.st │ │ │ ├── ensureVisibility.st │ │ │ ├── expand.st │ │ │ ├── groupAt..st │ │ │ ├── groupCount.st │ │ │ ├── groupNamed..st │ │ │ ├── groups.st │ │ │ ├── handleMouseMove..st │ │ │ ├── hasContent.st │ │ │ ├── highlightColor.st │ │ │ ├── initialize.st │ │ │ ├── initializeEventHandler.st │ │ │ ├── initializePreviewHandler.st │ │ │ ├── initializePrimaryList.st │ │ │ ├── initializeSecondaryList.st │ │ │ ├── orientation..st │ │ │ ├── orientation.st │ │ │ ├── queryListModel.st │ │ │ ├── refreshFromEditor..st │ │ │ ├── requestArtifact..st │ │ │ ├── selectGroup..st │ │ │ ├── selectGroupAt..st │ │ │ ├── selectGroupByEvent..st │ │ │ ├── selectGroupNamed..st │ │ │ ├── showPreview.st │ │ │ ├── triggerPreview..st │ │ │ └── widthCollapsed.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViGroupedToolbarModel.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addObjects..st │ │ │ ├── addOperation.label.icon..st │ │ │ ├── addOperation.label.icon.argument..st │ │ │ ├── addOperation.label.icon.argument.group..st │ │ │ ├── addOperations..st │ │ │ ├── childAt.inGroup..st │ │ │ ├── childCount.st │ │ │ ├── childCountInGroup..st │ │ │ ├── contents..st │ │ │ ├── contents.st │ │ │ ├── groups.st │ │ │ ├── helpText..st │ │ │ ├── helpText.st │ │ │ ├── objects..st │ │ │ ├── objects.st │ │ │ ├── refreshFromEditor..st │ │ │ ├── refreshOperationsFromEditor..st │ │ │ └── removeAllObjects.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViHaloLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ └── layout.in..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViHelp.class │ │ ├── README.md │ │ ├── class │ │ │ ├── about.st │ │ │ ├── aboutContents.st │ │ │ ├── appendCode.toText..st │ │ │ ├── bookName.st │ │ │ ├── icon.st │ │ │ ├── keyboardShortcuts.st │ │ │ ├── knownBugs.st │ │ │ ├── pages.st │ │ │ └── readme.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViHelpTopic.class │ │ ├── README.md │ │ ├── class │ │ │ └── title.icon.contents..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViIconService.class │ │ ├── README.md │ │ ├── class │ │ │ ├── announcement.st │ │ │ ├── arrowDown.st │ │ │ ├── arrowUp.st │ │ │ ├── arrowUpAndDown.st │ │ │ ├── arrowUpDownIcon.st │ │ │ ├── blank.st │ │ │ ├── blankIcon.st │ │ │ ├── breakpoint.st │ │ │ ├── classIcons.st │ │ │ ├── collection.st │ │ │ ├── doObjectUnscaled..st │ │ │ ├── exception.st │ │ │ ├── flag.st │ │ │ ├── iconForClass..st │ │ │ ├── iconForClass.selector..st │ │ │ ├── iconForTestClass.selector..st │ │ │ ├── icons.st │ │ │ ├── isOverridden.in..st │ │ │ ├── isOverride.in..st │ │ │ ├── magnitude.st │ │ │ ├── morph.st │ │ │ ├── signalOwnerChainIcon.st │ │ │ └── string.st │ │ ├── instance │ │ │ ├── doAssociation..st │ │ │ ├── doBlockClosure..st │ │ │ ├── doClassComment..st │ │ │ ├── doClassDescription..st │ │ │ ├── doColor..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doCompiledMethodReally..st │ │ │ ├── doContext..st │ │ │ ├── doDebugger..st │ │ │ ├── doForm..st │ │ │ ├── doLocatorOperation..st │ │ │ ├── doMethodReference..st │ │ │ ├── doMethodVersion..st │ │ │ ├── doMultiPaneWidget..st │ │ │ ├── doObject..st │ │ │ ├── doObjectUnscaled..st │ │ │ ├── doPackageInfo..st │ │ │ ├── doPane..st │ │ │ ├── doProtocol..st │ │ │ ├── doScriptPart..st │ │ │ ├── doSourceCodeSnippet..st │ │ │ ├── doTestCase..st │ │ │ └── doText..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViIconServiceForEclipse.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── doAssociation..st │ │ │ ├── doClassDescription..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doMCPackage..st │ │ │ ├── doPackageInfo..st │ │ │ └── doSystemCategory..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViIcons.class │ │ ├── README.md │ │ ├── class │ │ │ ├── arrowCircleDouble135SunkenIcon.st │ │ │ ├── blankIcon.st │ │ │ ├── blueFlagIcon.st │ │ │ ├── cachePrefix.st │ │ │ ├── circle..st │ │ │ ├── classSideIcon.st │ │ │ ├── classSideIconContents.st │ │ │ ├── control090SmallSunkenIcon.st │ │ │ ├── control270SmallSunkenIcon.st │ │ │ ├── controlRecordSmallSunkenIcon.st │ │ │ ├── crossSmallSunkenIcon.st │ │ │ ├── dragIcon.st │ │ │ ├── dragIconContents.st │ │ │ ├── dropShadowContents.st │ │ │ ├── dropShadowPattern.st │ │ │ ├── evalApplyIcon.st │ │ │ ├── evalApplyIconContents.st │ │ │ ├── evalApplySunkenContents.st │ │ │ ├── evalApplySunkenIcon.st │ │ │ ├── grayWashedWallContents.st │ │ │ ├── grayWashedWallPattern.st │ │ │ ├── icons8Add32pxIcon.st │ │ │ ├── icons8Add32pxIconContents.st │ │ │ ├── icons8Asterisk64pxIcon.st │ │ │ ├── icons8Asterisk64pxIconContents.st │ │ │ ├── icons8Broom64px1Icon.st │ │ │ ├── icons8Broom64px1IconContents.st │ │ │ ├── icons8BulletedList64px2Icon.st │ │ │ ├── icons8BulletedList64px2IconContents.st │ │ │ ├── icons8Cancel64px1Icon.st │ │ │ ├── icons8Cancel64px1IconContents.st │ │ │ ├── icons8CancelBlack64pxIcon.st │ │ │ ├── icons8CancelBlack64pxIconContents.st │ │ │ ├── icons8Checkmark64pxIcon.st │ │ │ ├── icons8Checkmark64pxIconContents.st │ │ │ ├── icons8ChevronDown64pxIcon.st │ │ │ ├── icons8ChevronDown64pxIconContents.st │ │ │ ├── icons8ChevronDownSmall64px1Icon.st │ │ │ ├── icons8ChevronDownSmall64px1IconContents.st │ │ │ ├── icons8ChevronRight32pxIcon.st │ │ │ ├── icons8ChevronRight32pxIconContents.st │ │ │ ├── icons8ChevronRight64pxIcon.st │ │ │ ├── icons8ChevronRight64pxIconContents.st │ │ │ ├── icons8ChevronRightSmall64px1Icon.st │ │ │ ├── icons8ChevronRightSmall64px1IconContents.st │ │ │ ├── icons8CollapseArrow64px1Icon.st │ │ │ ├── icons8CollapseArrow64px1IconContents.st │ │ │ ├── icons8Console64px1Icon.st │ │ │ ├── icons8Console64px1IconContents.st │ │ │ ├── icons8Copy64px1Icon.st │ │ │ ├── icons8Copy64px1IconContents.st │ │ │ ├── icons8CurvedArrow64pxIcon.st │ │ │ ├── icons8CurvedArrow64pxIconContents.st │ │ │ ├── icons8Delete64px1Icon.st │ │ │ ├── icons8Delete64px1IconContents.st │ │ │ ├── icons8DoubleRight32pxIcon.st │ │ │ ├── icons8DoubleRight32pxIconContents.st │ │ │ ├── icons8DownRight64pxIcon.st │ │ │ ├── icons8DownRight64pxIconContents.st │ │ │ ├── icons8Edit32pxIcon.st │ │ │ ├── icons8Edit32pxIconContents.st │ │ │ ├── icons8Enlarge232px1Icon.st │ │ │ ├── icons8Enlarge232px1IconContents.st │ │ │ ├── icons8Enlarge32pxIcon.st │ │ │ ├── icons8Enlarge32pxIconContents.st │ │ │ ├── icons8Error64px1Icon.st │ │ │ ├── icons8Error64px1IconContents.st │ │ │ ├── icons8Error64pxIcon.st │ │ │ ├── icons8Error64pxIconContents.st │ │ │ ├── icons8ExpandArrow64px1Icon.st │ │ │ ├── icons8ExpandArrow64px1IconContents.st │ │ │ ├── icons8FittoWidth64px1Icon.st │ │ │ ├── icons8FittoWidth64px1IconContents.st │ │ │ ├── icons8FlowChart32pxIcon.st │ │ │ ├── icons8FlowChart32pxIconContents.st │ │ │ ├── icons8Forward32pxIcon.st │ │ │ ├── icons8Forward32pxIconContents.st │ │ │ ├── icons8Help64px1Icon.st │ │ │ ├── icons8Help64px1IconContents.st │ │ │ ├── icons8Info64px1Icon.st │ │ │ ├── icons8Info64px1IconContents.st │ │ │ ├── icons8Login32pxIcon.st │ │ │ ├── icons8Login32pxIconContents.st │ │ │ ├── icons8LowPriority64pxIcon.st │ │ │ ├── icons8LowPriority64pxIconContents.st │ │ │ ├── icons8MenuVertical32pxIcon.st │ │ │ ├── icons8MenuVertical32pxIconContents.st │ │ │ ├── icons8Minus32pxIcon.st │ │ │ ├── icons8Minus32pxIconContents.st │ │ │ ├── icons8More32pxIcon.st │ │ │ ├── icons8More32pxIconContents.st │ │ │ ├── icons8Move64px1Icon.st │ │ │ ├── icons8Move64px1IconContents.st │ │ │ ├── icons8MoveGrabber64pxIcon.st │ │ │ ├── icons8MoveGrabber64pxIconContents.st │ │ │ ├── icons8NewDocument64px1Icon.st │ │ │ ├── icons8NewDocument64px1IconContents.st │ │ │ ├── icons8NoEntry64pxIcon.st │ │ │ ├── icons8NoEntry64pxIconContents.st │ │ │ ├── icons8Note64px1Icon.st │ │ │ ├── icons8Note64px1IconContents.st │ │ │ ├── icons8Ok64px1Icon.st │ │ │ ├── icons8Ok64px1IconContents.st │ │ │ ├── icons8PlusMath64px1Icon.st │ │ │ ├── icons8PlusMath64px1IconContents.st │ │ │ ├── icons8PriceTag64px1Icon.st │ │ │ ├── icons8PriceTag64px1IconContents.st │ │ │ ├── icons8QuestionMark64pxIcon.st │ │ │ ├── icons8QuestionMark64pxIconContents.st │ │ │ ├── icons8ReplyArrow64pxIcon.st │ │ │ ├── icons8ReplyArrow64pxIconContents.st │ │ │ ├── icons8ResizeVertical64px1Icon.st │ │ │ ├── icons8ResizeVertical64px1IconContents.st │ │ │ ├── icons8Right264pxIcon.st │ │ │ ├── icons8Right264pxIconContents.st │ │ │ ├── icons8Save64px1Icon.st │ │ │ ├── icons8Save64px1IconContents.st │ │ │ ├── icons8SearchProperty32pxIcon.st │ │ │ ├── icons8SearchProperty32pxIconContents.st │ │ │ ├── icons8SignOut32pxIcon.st │ │ │ ├── icons8SignOut32pxIconContents.st │ │ │ ├── icons8SortDown64pxIcon.st │ │ │ ├── icons8SortDown64pxIconContents.st │ │ │ ├── icons8SortUp64pxIcon.st │ │ │ ├── icons8SortUp64pxIconContents.st │ │ │ ├── icons8Subtract64px1Icon.st │ │ │ ├── icons8Subtract64px1IconContents.st │ │ │ ├── icons8Trash64px1Icon.st │ │ │ ├── icons8Trash64px1IconContents.st │ │ │ ├── icons8Trash64px2Icon.st │ │ │ ├── icons8Trash64px2IconContents.st │ │ │ ├── icons8UncheckedCheckbox64pxIcon.st │ │ │ ├── icons8UncheckedCheckbox64pxIconContents.st │ │ │ ├── icons8UpDown64pxIcon.st │ │ │ ├── icons8UpDown64pxIconContents.st │ │ │ ├── icons8UpRight64pxIcon.st │ │ │ ├── icons8UpRight64pxIconContents.st │ │ │ ├── icons8User64px1Icon.st │ │ │ ├── icons8User64px1IconContents.st │ │ │ ├── instanceSideIcon.st │ │ │ ├── instanceSideIconContents.st │ │ │ ├── license.st │ │ │ ├── lightWoolContents.st │ │ │ ├── lightWoolPattern.st │ │ │ ├── plusSmallSunkenIcon.st │ │ │ ├── plusSunkenIcon.st │ │ │ ├── questionMarkIcon.st │ │ │ ├── questionMarkIconContents.st │ │ │ ├── redCircleIcon.st │ │ │ ├── redFlagIcon.st │ │ │ ├── vivideLogo.st │ │ │ ├── vivideLogoContents.st │ │ │ └── wrenchSmallSunkenIcon.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViImageView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ ├── initializeToolbar.st │ │ │ ├── process..st │ │ │ ├── zoomFit.st │ │ │ ├── zoomIn..st │ │ │ └── zoomOut..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViInputField.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptChanges.st │ │ │ ├── grabKeyboard.st │ │ │ ├── hasKeyboard.st │ │ │ ├── initialize.st │ │ │ ├── initializeWidget.st │ │ │ ├── lineEdit.st │ │ │ ├── model.st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── selectedNodes.st │ │ │ └── textEdit.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViItemViewButtonColumnSpec.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── itemFor..st │ │ │ ├── root..st │ │ │ └── root.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLabelService.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── doClassDescription..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doContext..st │ │ │ ├── doMethodVersion..st │ │ │ ├── doProtocol..st │ │ │ ├── doScriptPart..st │ │ │ └── doSeparator..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLabelServiceForEclipse.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── doAssociation..st │ │ │ ├── doClassDescription..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doMCPackage..st │ │ │ ├── doPackageInfo..st │ │ │ └── doSystemCategory..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLabelStringService.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── doAssociation..st │ │ │ ├── doBlockClosure..st │ │ │ ├── doClassDescription..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doContext..st │ │ │ ├── doDateAndTime..st │ │ │ ├── doDebugger..st │ │ │ ├── doEditorState..st │ │ │ ├── doFlagComment..st │ │ │ ├── doLocatorOperation..st │ │ │ ├── doMethodReference..st │ │ │ ├── doMethodVersion..st │ │ │ ├── doObject..st │ │ │ ├── doPackageInfo..st │ │ │ ├── doPane..st │ │ │ ├── doProtocol..st │ │ │ ├── doScriptDefinition..st │ │ │ ├── doScriptPart..st │ │ │ ├── doSeparator..st │ │ │ ├── doString..st │ │ │ ├── doSymbol..st │ │ │ └── doText..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLazyForm.class │ │ ├── README.md │ │ ├── class │ │ │ └── init..st │ │ ├── instance │ │ │ ├── asMorph.st │ │ │ ├── doesNotUnderstand..st │ │ │ ├── extent.st │ │ │ ├── height.st │ │ │ ├── initBlock..st │ │ │ ├── scaledToDisplay.st │ │ │ ├── value.st │ │ │ └── width.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLazyImageMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── drawOn..st │ │ │ ├── extent..st │ │ │ ├── form..st │ │ │ └── form.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLineEdit.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initializeWidget.st │ │ │ ├── optimalWidth.st │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLineOfCode.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── checkHashForCode..st │ │ │ ├── clearCategory..st │ │ │ ├── hasCategory..st │ │ │ ├── isCategorized.st │ │ │ ├── setCategory..st │ │ │ └── toggleCategory.to..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViListView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLocator.class │ │ ├── README.md │ │ ├── class │ │ │ ├── widgetCategory.st │ │ │ └── widgetClassName.st │ │ ├── instance │ │ │ ├── addHelpResults.st │ │ │ ├── addResult..st │ │ │ ├── artifactRequested..st │ │ │ ├── clearResults.st │ │ │ ├── clearResultsIfEmpty.st │ │ │ ├── drawHelpTextOn..st │ │ │ ├── drawOn..st │ │ │ ├── evaluateResults..st │ │ │ ├── evaluateResults.st │ │ │ ├── hideResults.st │ │ │ ├── initialize.st │ │ │ ├── initializePreviewHandler.st │ │ │ ├── initializeResultList.st │ │ │ ├── initializeResultListDecorator.st │ │ │ ├── localObjects.st │ │ │ ├── objectLocated.inSource..st │ │ │ ├── onFocusLost.st │ │ │ ├── openResults..st │ │ │ ├── openResults.st │ │ │ ├── passKeyboardFocusToResultList.st │ │ │ ├── scriptResults.st │ │ │ ├── searchClasses..st │ │ │ ├── searchClasses.inPackages..st │ │ │ ├── searchFlags..st │ │ │ ├── searchImplementors..st │ │ │ ├── searchLiteralString..st │ │ │ ├── searchLocals..st │ │ │ ├── searchMethods..st │ │ │ ├── searchMethods.inClasses..st │ │ │ ├── searchMethods.inClasses.inPackages..st │ │ │ ├── searchMethods.inPackages..st │ │ │ ├── searchPackages..st │ │ │ ├── searchQueries..st │ │ │ ├── searchRecentChanges..st │ │ │ ├── searchSenders..st │ │ │ ├── searchSourceString..st │ │ │ ├── searchTraits..st │ │ │ ├── selectResult..st │ │ │ ├── selectResult.st │ │ │ ├── selectResults..st │ │ │ ├── selectResults.st │ │ │ ├── setSortBlock..st │ │ │ ├── showPreview.st │ │ │ ├── showResults.st │ │ │ ├── showScriptsAt.for..st │ │ │ ├── sortBlockForClasses.st │ │ │ ├── sortBlockForMatch.then..st │ │ │ ├── sortBlockForMethods.st │ │ │ ├── sortBlockForObjects.st │ │ │ ├── sortBlockForPackages.st │ │ │ ├── startSearch.st │ │ │ ├── startSearchIn.match..st │ │ │ ├── stopIterator.st │ │ │ ├── stopSearch.st │ │ │ ├── triggerPreview..st │ │ │ ├── vivide..st │ │ │ └── vivide.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLocatorOperation.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── description..st │ │ │ ├── description.st │ │ │ ├── shortcut..st │ │ │ └── shortcut.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLocatorResultListDecorator.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── drawOn..st │ │ │ ├── overlappingWidth..st │ │ │ ├── overlappingWidth.st │ │ │ └── yellowButtonActivity..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViLoggingService.class │ │ ├── README.md │ │ ├── class │ │ │ ├── activateLoggingService..st │ │ │ ├── activateLoggingService.st │ │ │ ├── couchDB..st │ │ │ ├── couchDB.st │ │ │ ├── database.st │ │ │ ├── default.st │ │ │ ├── defaultDo..st │ │ │ ├── logScreenshots..st │ │ │ ├── logScreenshots.st │ │ │ ├── loggingFlags.st │ │ │ ├── reset.st │ │ │ ├── trigger..st │ │ │ ├── user..st │ │ │ └── user.st │ │ ├── instance │ │ │ ├── addAllDocuments..st │ │ │ ├── addAttachement.contents.type.id..st │ │ │ ├── addDocument..st │ │ │ ├── addDocument.id..st │ │ │ ├── addForm.asJpegNamed.toId..st │ │ │ ├── addForm.asPngNamed.toId..st │ │ │ ├── externalCall.st │ │ │ ├── getDocumentById..st │ │ │ ├── lastDocument.st │ │ │ ├── lastDocumentId.st │ │ │ ├── lastDocuments..st │ │ │ ├── limitOutgoingRequests.st │ │ │ ├── mutex.st │ │ │ ├── outgoingAttachments.st │ │ │ ├── outgoingDocuments.st │ │ │ ├── pendingEvents.st │ │ │ ├── processPendingEvents.st │ │ │ ├── putDocument..st │ │ │ ├── rememberDocumentId..st │ │ │ ├── start.st │ │ │ ├── startActivityMonitor.st │ │ │ ├── startProcess.st │ │ │ ├── stop.st │ │ │ ├── trigger..st │ │ │ ├── trySendDocumentsAndAttachments.st │ │ │ ├── updateDocumentById.with..st │ │ │ └── updateLastDocumentWith..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMemoEdit.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addSelectionAttribute..st │ │ │ ├── compile.st │ │ │ ├── currentFont.st │ │ │ ├── currentFontSize.st │ │ │ ├── drawOn..st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initialize.st │ │ │ ├── makeSelectionBold.st │ │ │ ├── makeSelectionItalic.st │ │ │ ├── makeSelectionUnderlined.st │ │ │ ├── parse.st │ │ │ ├── setColor..st │ │ │ ├── setFont..st │ │ │ ├── setFontSize..st │ │ │ └── styler.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMemoEditor.class │ │ ├── README.md │ │ ├── class │ │ │ └── artifactName.st │ │ ├── instance │ │ │ ├── addArtifact.st │ │ │ ├── clear.st │ │ │ ├── currentFont.st │ │ │ ├── currentFontFamilyName.st │ │ │ ├── currentFontSize.st │ │ │ ├── defaultMemo.st │ │ │ ├── group.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── optimalWidth.st │ │ │ ├── setFont..st │ │ │ ├── setPointSize..st │ │ │ └── updateText..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMessageTally.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── isExecutingBlock..st │ │ │ ├── isExecutingBlock.st │ │ │ ├── lastPc..st │ │ │ ├── lastPc.st │ │ │ ├── tallyPath.by..st │ │ │ └── tallyPath.in.by..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMethodContextEditor.class │ │ ├── README.md │ │ ├── class │ │ │ └── supportedTypes.st │ │ ├── instance │ │ │ ├── clear.st │ │ │ ├── context..st │ │ │ ├── context.st │ │ │ ├── isAffectedBy..st │ │ │ ├── isObject..st │ │ │ ├── isValid.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── onContextChanged.st │ │ │ └── pcRange.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMethodContextEditorView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── initialize.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMethodDropTarget.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptArtifact.fromEditor.event..st │ │ │ ├── acceptObjects.fromEditor.event..st │ │ │ ├── drawOn..st │ │ │ ├── initialize.st │ │ │ ├── objectsDropped..st │ │ │ ├── text..st │ │ │ └── text.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMethodEditor.class │ │ ├── README.md │ │ ├── class │ │ │ └── artifactName.st │ │ ├── instance │ │ │ ├── addArtifact.st │ │ │ ├── addMethod.st │ │ │ ├── addMethodClass.st │ │ │ ├── addProtocol.st │ │ │ ├── asString.st │ │ │ ├── autoCategorizeMethod.st │ │ │ ├── bindings.st │ │ │ ├── browseSenders.st │ │ │ ├── clear.st │ │ │ ├── closeWithDeleteAnimation.st │ │ │ ├── context..st │ │ │ ├── context.st │ │ │ ├── defaultSource.st │ │ │ ├── deleteMethod.st │ │ │ ├── fileOut.st │ │ │ ├── group.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── isAffectedBy..st │ │ │ ├── isObject..st │ │ │ ├── isValid.st │ │ │ ├── justDroppedInto.event..st │ │ │ ├── knowsObject..st │ │ │ ├── loadLastCode.st │ │ │ ├── loadPreviousCode.st │ │ │ ├── lockSize.st │ │ │ ├── method.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── optimalWidth.st │ │ │ ├── protocol.st │ │ │ ├── reference.st │ │ │ ├── resetClearCounter.st │ │ │ ├── resetSource.st │ │ │ ├── runTest.st │ │ │ ├── selector.st │ │ │ ├── senders.st │ │ │ ├── sendersRequested..st │ │ │ ├── setDefaultSource.st │ │ │ ├── theClass.st │ │ │ ├── toggleBreakpoint.st │ │ │ ├── toggleSide.st │ │ │ ├── tryDeleteMethod.st │ │ │ ├── tryQuickClear.st │ │ │ ├── tryToggleSide.st │ │ │ └── unlockSize.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMethodEditorView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── initialize.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMethodSourceCodeEdit.class │ │ ├── README.md │ │ ├── class │ │ │ └── widgetClassName.st │ │ ├── instance │ │ │ ├── activateSymbol..st │ │ │ ├── checkMethodVersion.st │ │ │ ├── compile.st │ │ │ ├── drawOverlayBottomOn..st │ │ │ ├── drawOverlayOn..st │ │ │ ├── drawOverlayTopOn..st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── method..st │ │ │ ├── method.st │ │ │ ├── methodReference.st │ │ │ ├── notify.at.in..st │ │ │ ├── overlayText.st │ │ │ ├── parse.st │ │ │ ├── protocol..st │ │ │ ├── protocol.st │ │ │ └── selector.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMethodVersion.class │ │ ├── README.md │ │ ├── class │ │ │ ├── fromSources.andPointer..st │ │ │ ├── relativeDateLabels.st │ │ │ ├── scan.from..st │ │ │ └── versionsOfMethod..st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── acceptObjectService..st │ │ │ ├── author.st │ │ │ ├── category.st │ │ │ ├── classIsMeta.st │ │ │ ├── classSymbol.st │ │ │ ├── date.st │ │ │ ├── fileIn..st │ │ │ ├── fileIn.st │ │ │ ├── hash.st │ │ │ ├── latest.st │ │ │ ├── parseChunk..st │ │ │ ├── parseSource.st │ │ │ ├── pointer.st │ │ │ ├── previous.st │ │ │ ├── relativeDateString.st │ │ │ ├── selector.st │ │ │ ├── setSelector.st │ │ │ ├── setSources.pointer..st │ │ │ ├── source.st │ │ │ ├── sourceString.st │ │ │ ├── stamp.st │ │ │ ├── theClass.st │ │ │ └── timeStamp.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMethodVersionEditor.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── currentReference.st │ │ │ ├── group.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initialize.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── optimalWidth.st │ │ │ ├── revert.st │ │ │ ├── theClass.st │ │ │ └── version.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViModelNode.class │ │ ├── README.md │ │ ├── class │ │ │ ├── updateDepthThreshold..st │ │ │ └── updateDepthThreshold.st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── addGroup..st │ │ │ ├── allObjects.st │ │ │ ├── at.ifAbsent..st │ │ │ ├── cachedResults..st │ │ │ ├── cachedResults.st │ │ │ ├── children.st │ │ │ ├── clearAllInputChangeNotifications.st │ │ │ ├── clearAllStepChangeNotifications.st │ │ │ ├── clearInputChangeNotifications.st │ │ │ ├── clearStepChangeNotifications.st │ │ │ ├── collectNodes..st │ │ │ ├── copyStack..st │ │ │ ├── defaultGroup.st │ │ │ ├── depth..st │ │ │ ├── depth.st │ │ │ ├── doesNotUnderstand..st │ │ │ ├── emergencyClearFor..st │ │ │ ├── explorerContents.st │ │ │ ├── firstStep..st │ │ │ ├── firstStep.st │ │ │ ├── groups..st │ │ │ ├── groups.st │ │ │ ├── hasSameStack..st │ │ │ ├── hash.st │ │ │ ├── hashStack..st │ │ │ ├── inputForChildren..st │ │ │ ├── inputForChildren.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── objects.st │ │ │ ├── onEvent.fromNotifier.inStep..st │ │ │ ├── pane..st │ │ │ ├── pane.st │ │ │ ├── printOn..st │ │ │ ├── processSteps.st │ │ │ ├── processStepsGuarded.st │ │ │ ├── referenceStack..st │ │ │ ├── referenceStack.st │ │ │ ├── referenceStackNoCopy.st │ │ │ ├── reset.st │ │ │ ├── resetChildren.st │ │ │ ├── resetChildrenSilently.st │ │ │ ├── resetSilently.st │ │ │ ├── respondsTo..st │ │ │ ├── setInputChangeNotifications.st │ │ │ ├── setStepChangeNotifications.st │ │ │ ├── triggerUpdateChildren.st │ │ │ ├── tryUpdateChildren.st │ │ │ ├── updateChildren.st │ │ │ ├── updateFromChangedDefinition..st │ │ │ ├── updateFromChangedStep..st │ │ │ ├── updateNotifiers.st │ │ │ └── withNodes.do..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── wantsHaloFromClick..st │ │ │ └── wantsHaloFromClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMorphDecorator.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── drawOn..st │ │ │ └── initialize.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMorphService.class │ │ ├── README.md │ │ ├── instance │ │ │ └── doSeparator..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViMorphView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addPin..st │ │ │ ├── addPinAt..st │ │ │ ├── clear.st │ │ │ ├── container.st │ │ │ ├── cursorPosition..st │ │ │ ├── cursorPosition.st │ │ │ ├── drawOverlayOn..st │ │ │ ├── handlesMouseMove..st │ │ │ ├── handlesMouseOver..st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── initialize.st │ │ │ ├── model.st │ │ │ ├── mouseEnter..st │ │ │ ├── mouseLeave..st │ │ │ ├── mouseMove..st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── setUp..st │ │ │ ├── updateScale.st │ │ │ └── wantsHaloFromClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViNotificationToolButton.class │ │ ├── README.md │ │ ├── class │ │ │ ├── widgetCategory.st │ │ │ └── widgetClassName.st │ │ ├── instance │ │ │ ├── clear.st │ │ │ ├── drawOverlayOn..st │ │ │ ├── notificationIcon.st │ │ │ ├── setIcon..st │ │ │ ├── setIconByNumber.color..st │ │ │ ├── showError.st │ │ │ ├── showNumber..st │ │ │ └── showWarning.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectChangeNotifier.class │ │ ├── README.md │ │ ├── class │ │ │ ├── objectKind.st │ │ │ ├── resetUniqueInstance.st │ │ │ └── uniqueInstance.st │ │ ├── instance │ │ │ ├── doSilently..st │ │ │ ├── filter.st │ │ │ ├── initialize.st │ │ │ ├── isBroadcasting.st │ │ │ ├── noMoreNotificationsFor..st │ │ │ ├── notify.using..st │ │ │ ├── notifyEvent..st │ │ │ ├── objectChanged..st │ │ │ ├── objectChanged.oldObject..st │ │ │ ├── releaseAll.st │ │ │ ├── setBroadcasting.st │ │ │ ├── subscribe.st │ │ │ ├── trigger..st │ │ │ └── unsubscribe.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectEditor.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptChanges.st │ │ │ ├── adoptPaneColor..st │ │ │ ├── changeReceiverFor..st │ │ │ ├── clear.st │ │ │ ├── contentTree.st │ │ │ ├── editVisibilityBtn.st │ │ │ ├── editVisible..st │ │ │ ├── editVisible.st │ │ │ ├── executeCommand..st │ │ │ ├── focusCurrentNodeIn..st │ │ │ ├── grabKeyboard.st │ │ │ ├── group.st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── knowsObject..st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── onMenuRequestedAt.for..st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── refreshModel.st │ │ │ ├── showHaloFor..st │ │ │ ├── sourceCodeEdit.st │ │ │ ├── theClass.st │ │ │ ├── toggleEditVisible.st │ │ │ ├── turnOffAutoRefresh.st │ │ │ └── turnOnAutoRefresh.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectEditorModel.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── base.st │ │ │ ├── baseObject.st │ │ │ ├── childAt.inGroup..st │ │ │ ├── childCountInGroup..st │ │ │ ├── groups.st │ │ │ ├── hasChildren.st │ │ │ ├── hash.st │ │ │ ├── icon.st │ │ │ ├── isRoot..st │ │ │ ├── isRoot.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── tag.st │ │ │ ├── text.st │ │ │ ├── theClass.st │ │ │ ├── update.st │ │ │ ├── updateContentsCache.st │ │ │ ├── wrappedObject..st │ │ │ └── wrappedObject.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectEditorModelForStateChanges.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectGate.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── beClient.st │ │ │ ├── beServer.st │ │ │ ├── connectionEstablished.st │ │ │ ├── connectionLost.st │ │ │ ├── connectionTimedOut.st │ │ │ ├── createConnection.st │ │ │ ├── createRecvProcess.st │ │ │ ├── createSendProcess.st │ │ │ ├── deserializeObjectFrom..st │ │ │ ├── disconnect.st │ │ │ ├── hostAddress..st │ │ │ ├── hostAddress.st │ │ │ ├── initialize.st │ │ │ ├── isConnected.st │ │ │ ├── isServer.st │ │ │ ├── isWaitingForConnection.st │ │ │ ├── objectReceived..st │ │ │ ├── objectSent..st │ │ │ ├── port..st │ │ │ ├── port.st │ │ │ ├── sendObject..st │ │ │ ├── serializeObject..st │ │ │ ├── startDataProcesses.st │ │ │ ├── stopDataProcesses.st │ │ │ └── waitForNextObject.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectGateEditor.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addObject..st │ │ │ ├── clear.st │ │ │ ├── group.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── sendObjects..st │ │ │ ├── toggleServerMode..st │ │ │ ├── tryConnect.st │ │ │ ├── ui.st │ │ │ ├── updateAddressInObjectGate.st │ │ │ └── updateButtons.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectGateEditorUi.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addressEdit.st │ │ │ ├── connectBtn.st │ │ │ ├── dropTarget.st │ │ │ ├── incomingList.st │ │ │ ├── initializePanel.st │ │ │ └── serverBtn.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectHistory.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── addObject..st │ │ │ ├── clear.st │ │ │ ├── ensureLimit.st │ │ │ ├── isEmpty.st │ │ │ ├── limit..st │ │ │ ├── limit.st │ │ │ ├── limitChanged.st │ │ │ ├── objectAdded..st │ │ │ ├── objectRemoved..st │ │ │ ├── objects.st │ │ │ ├── removeObject..st │ │ │ ├── removeObject.ifAbsent..st │ │ │ └── size.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectHistoryNotifier.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── history..st │ │ │ ├── history.st │ │ │ ├── subscribe.st │ │ │ └── unsubscribe.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectOriginService.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── doAssociation..st │ │ │ ├── doBlockClosure..st │ │ │ ├── doClassComment..st │ │ │ ├── doClassDescription..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doContext..st │ │ │ ├── doDebugger..st │ │ │ ├── doEditorState..st │ │ │ ├── doFlagComment..st │ │ │ ├── doLocatorOperation..st │ │ │ ├── doMethodReference..st │ │ │ ├── doMethodVersion..st │ │ │ ├── doObject..st │ │ │ ├── doPackageInfo..st │ │ │ ├── doProtocol..st │ │ │ ├── doScriptPart..st │ │ │ ├── doSeparator..st │ │ │ └── doText..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectOriginServiceForEclipse.class │ │ ├── README.md │ │ ├── instance │ │ │ └── doCompiledMethod..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectPreviewHandler.class │ │ ├── README.md │ │ ├── class │ │ │ └── createClassPreviewFor..st │ │ ├── instance │ │ │ ├── codeboxFor.inClass..st │ │ │ ├── discardPreview.st │ │ │ ├── discardPreviewLater.st │ │ │ ├── doAssociation..st │ │ │ ├── doClassComment..st │ │ │ ├── doClassDescription..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doEditorState..st │ │ │ ├── doFlagComment..st │ │ │ ├── doMessageTally..st │ │ │ ├── doMethodReference..st │ │ │ ├── doMethodVersion..st │ │ │ ├── doObject.st │ │ │ ├── doScriptDefinition..st │ │ │ ├── doScriptPart..st │ │ │ ├── doSourceCodeSnippet..st │ │ │ ├── doText..st │ │ │ ├── hidePreview.st │ │ │ ├── keepPreview.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── objectBounds..st │ │ │ ├── objectBounds.st │ │ │ ├── panel..st │ │ │ ├── panel.st │ │ │ ├── preferredEdge..st │ │ │ ├── preferredEdge.st │ │ │ ├── setPanelPositionAt..st │ │ │ ├── showPreview.st │ │ │ ├── showPreviewAt..st │ │ │ ├── textboxFor..st │ │ │ └── textboxFor.color..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectService.class │ │ ├── README.md │ │ ├── class │ │ │ └── doObject..st │ │ ├── instance │ │ │ ├── doAssociation..st │ │ │ ├── doBlockClosure..st │ │ │ ├── doClassComment..st │ │ │ ├── doClassDescription..st │ │ │ ├── doClassReference..st │ │ │ ├── doColor..st │ │ │ ├── doCompiledBlock..st │ │ │ ├── doCompiledMethod..st │ │ │ ├── doContext..st │ │ │ ├── doDateAndTime..st │ │ │ ├── doDebugger..st │ │ │ ├── doEditorState..st │ │ │ ├── doFlagComment..st │ │ │ ├── doForm..st │ │ │ ├── doLocatorOperation..st │ │ │ ├── doMessageTally..st │ │ │ ├── doMethodReference..st │ │ │ ├── doMethodVersion..st │ │ │ ├── doMultiPaneWidget..st │ │ │ ├── doObject..st │ │ │ ├── doObjectGate..st │ │ │ ├── doObjectHistory..st │ │ │ ├── doPackageInfo..st │ │ │ ├── doPane..st │ │ │ ├── doProtocol..st │ │ │ ├── doScriptDefinition..st │ │ │ ├── doScriptObject..st │ │ │ ├── doScriptPart..st │ │ │ ├── doSeparator..st │ │ │ ├── doSourceCodeSnippet..st │ │ │ ├── doString..st │ │ │ ├── doSymbol..st │ │ │ ├── doTestCase..st │ │ │ ├── doTestReference..st │ │ │ └── doText..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViObjectStateChange.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── after..st │ │ │ ├── after.st │ │ │ ├── before..st │ │ │ ├── before.st │ │ │ ├── callgraph.st │ │ │ ├── node..st │ │ │ └── node.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViOperationToolbar.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── highlightColor.st │ │ │ ├── initializePreviewHandler.st │ │ │ ├── initializeSecondaryList.st │ │ │ ├── onOperationClicked..st │ │ │ ├── operationContext..st │ │ │ ├── operationContext.st │ │ │ ├── operationSelected.argument.inGroup..st │ │ │ ├── operationSelected.inGroup..st │ │ │ ├── refreshFromEditor..st │ │ │ └── selectGroup..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViOverlappingLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ └── layout.in..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViOverlayConnector.class │ │ ├── README.md │ │ ├── class │ │ │ └── newFrom.to.in..st │ │ ├── instance │ │ │ ├── addAllSourceMorphs..st │ │ │ ├── addAllTargetMorphs..st │ │ │ ├── connectMorph..st │ │ │ ├── connectTransformMorph..st │ │ │ ├── disconnectMorph..st │ │ │ ├── disconnectTransformMorph..st │ │ │ ├── drawFramesOn..st │ │ │ ├── drawLinesOn..st │ │ │ ├── drawOn..st │ │ │ ├── initialize.st │ │ │ ├── isOverlayConnector.st │ │ │ ├── rejectsEvent..st │ │ │ ├── removeAllSourceMorphs.st │ │ │ ├── removeAllTargetMorphs.st │ │ │ ├── removeSourceMorph..st │ │ │ ├── removeTargetMorph..st │ │ │ ├── sourceMorphBounds.st │ │ │ ├── sourceMorphs.st │ │ │ ├── targetMorphBounds.st │ │ │ ├── targetMorphs.st │ │ │ ├── update.st │ │ │ └── updateReferences.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViOverlayMessageBox.class │ │ ├── README.md │ │ ├── class │ │ │ └── example01.st │ │ ├── instance │ │ │ ├── addAction.icon..st │ │ │ ├── addAction.icon.receiver.selector..st │ │ │ ├── addAction.icon.receiver.selectors..st │ │ │ ├── extent..st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── initialize.st │ │ │ ├── message..st │ │ │ ├── message.icon..st │ │ │ ├── showAbove..st │ │ │ ├── title..st │ │ │ ├── ui.st │ │ │ └── updateShortcuts.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViOverlayMessageBoxUi.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── buttonContainer.st │ │ │ ├── iconLbl.st │ │ │ ├── initializePanel.st │ │ │ ├── messageContainer.st │ │ │ ├── messageLbl.st │ │ │ └── titleLbl.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPane.class │ │ ├── README.md │ │ ├── class │ │ │ ├── chooseAndOpenScriptWith..st │ │ │ ├── forScript.withObjects..st │ │ │ └── openScript.withObjects..st │ │ ├── instance │ │ │ ├── ^tilde.tilde.more.st │ │ │ ├── ^tilde.tilde.tilde.st │ │ │ ├── acceptChanges.st │ │ │ ├── acceptObjectService..st │ │ │ ├── activate.st │ │ │ ├── activated.st │ │ │ ├── addDecoration.named..st │ │ │ ├── addHalo..st │ │ │ ├── addHalo.st │ │ │ ├── addMessageDecoration.st │ │ │ ├── addScript.st │ │ │ ├── addWindowDecoration.st │ │ │ ├── adoptOrganization..st │ │ │ ├── allResults.st │ │ │ ├── appropriateScripts.st │ │ │ ├── assureAppropriateScript.st │ │ │ ├── assureIdentityScript.st │ │ │ ├── attach..st │ │ │ ├── baseClass.st │ │ │ ├── beKeyWindow.st │ │ │ ├── beginUpdateChain.st │ │ │ ├── beginUpdateChainWith..st │ │ │ ├── browseObjects.st │ │ │ ├── browseResults.st │ │ │ ├── canUpdate..st │ │ │ ├── chooseAndOpenScript.st │ │ │ ├── chooseAndOpenScriptWith..st │ │ │ ├── chooseObject.st │ │ │ ├── chooseObjectAt.thenNotify.with..st │ │ │ ├── chooseVivideTool.st │ │ │ ├── clear.st │ │ │ ├── clearError.st │ │ │ ├── connectModelAndView.st │ │ │ ├── connections.st │ │ │ ├── containingWindow.st │ │ │ ├── copyScript.st │ │ │ ├── copyTool.st │ │ │ ├── createIdentityScript.st │ │ │ ├── decoration.st │ │ │ ├── decorationNamed..st │ │ │ ├── decorationNamed.ifAbsent..st │ │ │ ├── decorationNamed.ifAbsentPut..st │ │ │ ├── decorations.st │ │ │ ├── deferredObjects.st │ │ │ ├── detach..st │ │ │ ├── disconnectModelAndView.st │ │ │ ├── drawOn..st │ │ │ ├── editScript..st │ │ │ ├── editScript.st │ │ │ ├── exploreHierarchy.st │ │ │ ├── flash.st │ │ │ ├── forceUpdate.st │ │ │ ├── grabKeyboard.st │ │ │ ├── haloClass.st │ │ │ ├── handleMouseDown..st │ │ │ ├── handlesMouseDown..st │ │ │ ├── hasDropShadow..st │ │ │ ├── hasDropShadow.st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasLocalCycle.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── id..st │ │ │ ├── id.st │ │ │ ├── initialize.st │ │ │ ├── initializeUiObjectChanges.st │ │ │ ├── initializeUiScriptChanges.st │ │ │ ├── initializeUiSystemChanges.st │ │ │ ├── isExperimentalTool.st │ │ │ ├── isPane.st │ │ │ ├── isScriptEditor.st │ │ │ ├── justDroppedInto.event..st │ │ │ ├── knownScripts.st │ │ │ ├── lastUpdateId.st │ │ │ ├── model..st │ │ │ ├── model.st │ │ │ ├── mouseDown..st │ │ │ ├── notify.with.about..st │ │ │ ├── notifyChangedResults.st │ │ │ ├── notifyChangedSelection..st │ │ │ ├── objects..st │ │ │ ├── objects.from..st │ │ │ ├── objects.st │ │ │ ├── objectsAsIs..st │ │ │ ├── objectsChanged..st │ │ │ ├── onFocusLost.st │ │ │ ├── open.st │ │ │ ├── openDebuggerForLastException.st │ │ │ ├── openInWindow.st │ │ │ ├── openInWorld.st │ │ │ ├── openScript..st │ │ │ ├── openScript.withObjects..st │ │ │ ├── openScriptForLastException.st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── organization.st │ │ │ ├── ownerChainPanes.st │ │ │ ├── popUpAt..st │ │ │ ├── recentScripts..st │ │ │ ├── recentScripts.st │ │ │ ├── recentScriptsAdd..st │ │ │ ├── results.st │ │ │ ├── returnChoice..st │ │ │ ├── script..st │ │ │ ├── script.from..st │ │ │ ├── script.st │ │ │ ├── scriptChanged..st │ │ │ ├── selectedResults.st │ │ │ ├── showError..st │ │ │ ├── showLastException.st │ │ │ ├── showNoInput.st │ │ │ ├── startDrag..st │ │ │ ├── topmostPane.st │ │ │ ├── translateToAlignWith..st │ │ │ ├── translateToAlignWithFocus.st │ │ │ ├── translateToShowDecorations.st │ │ │ ├── triggerDeferredObjects.st │ │ │ ├── triggerShowError..st │ │ │ ├── triggerShowError.node..st │ │ │ ├── triggerUpdateResults.st │ │ │ ├── triggerUpdateView.st │ │ │ ├── tryClose.st │ │ │ ├── tryDeferredObjects.st │ │ │ ├── tryUpdateResults.st │ │ │ ├── tryUpdateView.st │ │ │ ├── tupleSize.st │ │ │ ├── tupleSizeDynamic.st │ │ │ ├── tupleSizeInput.st │ │ │ ├── updateColor.st │ │ │ ├── updateFromChangedCode..st │ │ │ ├── updateFromChangedObject..st │ │ │ ├── updateFromChangedScript..st │ │ │ ├── updateLabel.st │ │ │ ├── updateResults.st │ │ │ ├── updateView.st │ │ │ ├── useSimpleWindowTitle.st │ │ │ ├── validConnections.st │ │ │ ├── validInputConnections.st │ │ │ ├── validOutputConnections.st │ │ │ ├── view..st │ │ │ ├── view.st │ │ │ ├── wantsToBeAttachedTo..st │ │ │ ├── wantsYellowButtonMenu.st │ │ │ ├── withAllPanes.st │ │ │ ├── withAllPanesDo..st │ │ │ ├── worldBoundsForHalo.st │ │ │ └── yellowButtonActivity..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPaneConnection.class │ │ ├── README.md │ │ ├── class │ │ │ ├── connectionKind.st │ │ │ ├── from.to..st │ │ │ ├── icon.st │ │ │ └── kind.from.to..st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── ^tilde.tilde.more.st │ │ │ ├── attach.st │ │ │ ├── attachSilently.st │ │ │ ├── detach.st │ │ │ ├── hash.st │ │ │ ├── isResults.st │ │ │ ├── isSelection.st │ │ │ ├── isValid.st │ │ │ ├── mustBeUnique.st │ │ │ ├── notify.st │ │ │ ├── objects.st │ │ │ ├── source..st │ │ │ ├── source.st │ │ │ ├── target..st │ │ │ └── target.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPaneConnectionMorph.class │ │ ├── README.md │ │ ├── class │ │ │ └── from.to.walls..st │ │ ├── instance │ │ │ ├── computeVertices.st │ │ │ ├── deferUpdates..st │ │ │ ├── deferUpdates.st │ │ │ ├── displayComputationResults..st │ │ │ ├── drawOn..st │ │ │ ├── endPosition..st │ │ │ ├── endPosition.st │ │ │ ├── grid.st │ │ │ ├── initialize.st │ │ │ ├── nearestPositionFor.outsideWalls.onSide..st │ │ │ ├── outerBounds.st │ │ │ ├── setFrom.to..st │ │ │ ├── setFrom.to.walls..st │ │ │ ├── startPosition..st │ │ │ ├── startPosition.st │ │ │ ├── tunnels..st │ │ │ ├── tunnels.st │ │ │ ├── walk.st │ │ │ ├── walls..st │ │ │ ├── walls.st │ │ │ └── withExtraWall.do..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPaneDecorationGhost.class │ │ ├── README.md │ │ ├── class │ │ │ └── default.st │ │ ├── instance │ │ │ └── doesNotUnderstand..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPaneDecorationLookup.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── doesNotUnderstand..st │ │ │ ├── pane..st │ │ │ ├── pane.st │ │ │ └── yourself.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPaneHaloMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addConnection.with..st │ │ │ ├── addControlHandles.st │ │ │ ├── addFanInHandles.st │ │ │ ├── addFanOutHandles.st │ │ │ ├── addHandleButton..st │ │ │ ├── addHandles.st │ │ │ ├── addQueryHandles.st │ │ │ ├── basicBox.st │ │ │ ├── changeToQueryFrom..st │ │ │ ├── createHandleButton..st │ │ │ ├── doConnect.with..st │ │ │ ├── doDrag.with..st │ │ │ ├── doGrow.with..st │ │ │ ├── doLayoutIn..st │ │ │ ├── dragTarget..st │ │ │ ├── drawOn..st │ │ │ ├── endInteraction.st │ │ │ ├── fanInColor.st │ │ │ ├── fanOutColor.st │ │ │ ├── handleSize.st │ │ │ ├── initialize.st │ │ │ ├── initializeInputConnections.st │ │ │ ├── initializeOutputConnections.st │ │ │ ├── innerTarget.st │ │ │ ├── logDataflowChanged.st │ │ │ ├── outOfWorld..st │ │ │ ├── outerBounds.st │ │ │ ├── paneInHandles.st │ │ │ ├── paneOutHandles.st │ │ │ ├── popUpFor..st │ │ │ ├── popUpFor.at.hand..st │ │ │ ├── startConnect.with..st │ │ │ ├── startDrag.with..st │ │ │ ├── startGrow.with..st │ │ │ ├── target..st │ │ │ ├── target.st │ │ │ └── wantsYellowButtonMenu.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPaneHighlight.class │ │ ├── README.md │ │ ├── class │ │ │ └── on..st │ │ ├── instance │ │ │ ├── drawOn..st │ │ │ ├── initialize.st │ │ │ ├── pane..st │ │ │ ├── pane.st │ │ │ ├── rejectsEvent..st │ │ │ ├── update.st │ │ │ └── wantsHaloFromClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPaneListView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── adoptPaneColor..st │ │ │ ├── connections.st │ │ │ ├── content.st │ │ │ ├── initialize.st │ │ │ ├── lastUpdateId.st │ │ │ ├── model.st │ │ │ ├── organization.st │ │ │ ├── panes.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── script.st │ │ │ ├── setUp..st │ │ │ └── wantsHaloFromClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViParser.class │ │ ├── README.md │ │ ├── instance │ │ │ └── resolve..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViParserHelper.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── correctFrom.to.with..st │ │ │ ├── deselect.st │ │ │ ├── notify.at.in..st │ │ │ ├── select.st │ │ │ ├── selectFrom.to..st │ │ │ ├── selectIntervalInvisibly..st │ │ │ ├── selectInvisiblyFrom.to..st │ │ │ ├── selectedText.st │ │ │ ├── selection..st │ │ │ ├── selection.st │ │ │ ├── selectionInterval.st │ │ │ ├── text..st │ │ │ ├── text.st │ │ │ ├── view..st │ │ │ └── view.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPluggableButtonBarMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── clear.st │ │ │ ├── doClickAt..st │ │ │ ├── drawOn..st │ │ │ ├── initialize.st │ │ │ ├── model.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPluggableListMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── arrowKey.from..st │ │ │ ├── currentSelectionIndex..st │ │ │ ├── currentSelectionIndex.st │ │ │ ├── dragPassengerAtIndex..st │ │ │ ├── dragTransferTypeAtIndex..st │ │ │ ├── grabKeyboard.st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasMultiSelection.st │ │ │ ├── hasSingleSelection.st │ │ │ ├── iconAtIndex..st │ │ │ ├── initialize.st │ │ │ ├── initializeForMultiSelection.st │ │ │ ├── initializeForSingleSelection.st │ │ │ ├── isSelectedAt..st │ │ │ ├── list.st │ │ │ ├── menu.evaluate..st │ │ │ ├── model.st │ │ │ ├── morph.st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── selectNone.st │ │ │ ├── selectNoneSilently.st │ │ │ ├── selectedNode.st │ │ │ ├── selectedNodes.st │ │ │ ├── selectedObjects.st │ │ │ ├── selectionMap.st │ │ │ ├── setAt.isSelected..st │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPluggableTextMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── aboutToStyle..st │ │ │ ├── bindingOf..st │ │ │ ├── doItContext.st │ │ │ ├── doItReceiver.st │ │ │ ├── grabKeyboard.st │ │ │ ├── hasKeyboard.st │ │ │ ├── help.st │ │ │ ├── initialize.st │ │ │ ├── model.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── rootNode.st │ │ │ ├── selection.st │ │ │ ├── separator.st │ │ │ ├── setUp..st │ │ │ ├── text..st │ │ │ ├── text.st │ │ │ ├── textMorph.st │ │ │ ├── textObjectsFor..st │ │ │ └── textObjectsForNode..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPluggableTreeMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── balloonTextFor..st │ │ │ ├── childrenFor..st │ │ │ ├── currentSelection..st │ │ │ ├── currentSelection.st │ │ │ ├── dragPassengerFor..st │ │ │ ├── dragTypeFor..st │ │ │ ├── hasChildrenFor..st │ │ │ ├── iconFor..st │ │ │ ├── initialize.st │ │ │ ├── labelFor..st │ │ │ ├── menu.evaluate..st │ │ │ ├── model.st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── setUp..st │ │ │ ├── toplevelNodes.st │ │ │ └── treeMorph.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPolyMetricTreeItem.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addChild..st │ │ │ ├── addRandomChild.st │ │ │ ├── childMorphs.st │ │ │ ├── drawOverlayOn..st │ │ │ ├── initialize.st │ │ │ ├── initializeChildren.st │ │ │ ├── initializeNode.st │ │ │ ├── itemMorph.st │ │ │ ├── lineWeight..st │ │ │ ├── lineWeight.st │ │ │ ├── scale..st │ │ │ ├── scale.st │ │ │ ├── zoomFit.st │ │ │ ├── zoomIn.st │ │ │ └── zoomOut.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViPolyMetricTreeView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addItemsForNode.parent..st │ │ │ ├── configureItem.forNode..st │ │ │ ├── deselectAll.st │ │ │ ├── deselectItem..st │ │ │ ├── initialize.st │ │ │ ├── initializeScroller.st │ │ │ ├── initializeToolbar.st │ │ │ ├── mouseDown.on..st │ │ │ ├── mouseEnter.on..st │ │ │ ├── mouseLeave.on..st │ │ │ ├── mouseUp.on..st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── rootNode.st │ │ │ ├── selectItem..st │ │ │ ├── selectedItems.st │ │ │ ├── selectedObjects.st │ │ │ ├── startDrag.event.source..st │ │ │ ├── zoomFit.st │ │ │ ├── zoomIn..st │ │ │ └── zoomOut..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViProcessEditor.class │ │ ├── README.md │ │ ├── class │ │ │ └── supportedTypes.st │ │ ├── instance │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── isUiProcess.st │ │ │ ├── restart.st │ │ │ ├── resume.st │ │ │ ├── stepInto.st │ │ │ ├── stepOver.st │ │ │ ├── stepThrough.st │ │ │ ├── suspend.st │ │ │ ├── terminate.st │ │ │ └── tryClear.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViProfile.class │ │ ├── README.md │ │ ├── class │ │ │ ├── active.st │ │ │ ├── newEmpty.st │ │ │ ├── newFrom..st │ │ │ └── newMinimal.st │ │ ├── instance │ │ │ ├── addArtifacts.st │ │ │ ├── addClassHierarchy.st │ │ │ ├── addClassOutline.st │ │ │ ├── addDefaultProperties.st │ │ │ ├── addDefaultPropertiesExtended.st │ │ │ ├── addDefaultPropertiesMinimal.st │ │ │ ├── addExplorer.st │ │ │ ├── addFormattedScripts.st │ │ │ ├── addGroupsMinimalScript.st │ │ │ ├── addGroupsScript.st │ │ │ ├── addImplementors.st │ │ │ ├── addMessageSet.st │ │ │ ├── addObjectTemplates.st │ │ │ ├── addPackageOutline.st │ │ │ ├── addPackages.st │ │ │ ├── addPaneHierarchy.st │ │ │ ├── addRecoverUnsavedScripts.st │ │ │ ├── addScript..st │ │ │ ├── addSenders.st │ │ │ ├── addTools.st │ │ │ ├── addTranscript.st │ │ │ ├── addWorkspace.st │ │ │ ├── asDictionary.st │ │ │ ├── converter..st │ │ │ ├── converter.st │ │ │ ├── defaultView..st │ │ │ ├── defaultView.st │ │ │ ├── export.st │ │ │ ├── id..st │ │ │ ├── id.st │ │ │ ├── import.st │ │ │ ├── initializeMinimal.st │ │ │ ├── isValid.st │ │ │ ├── label..st │ │ │ ├── label.st │ │ │ ├── loadFromDictionary..st │ │ │ ├── mergeFromDictionary..st │ │ │ ├── organization..st │ │ │ ├── organization.st │ │ │ ├── printOn..st │ │ │ ├── register.st │ │ │ └── unregister.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViProtocol.class │ │ ├── README.md │ │ ├── class │ │ │ ├── named.inClass..st │ │ │ └── protocolsForClass..st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── acceptObjectService..st │ │ │ ├── baseName.st │ │ │ ├── classify..st │ │ │ ├── containingPackage.st │ │ │ ├── hash.st │ │ │ ├── isExtension.st │ │ │ ├── isOverride.st │ │ │ ├── methods.st │ │ │ ├── protocolname..st │ │ │ ├── protocolname.st │ │ │ ├── renameTo..st │ │ │ ├── theClass..st │ │ │ └── theClass.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViProtocolEditor.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptChanges.st │ │ │ ├── addMethod.st │ │ │ ├── changeProtocolFor..st │ │ │ ├── checkProtocol.st │ │ │ ├── clear.st │ │ │ ├── context..st │ │ │ ├── context.st │ │ │ ├── ensureProtocol.st │ │ │ ├── grabKeyboard.st │ │ │ ├── group.st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── isAffectedBy..st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── organization.st │ │ │ ├── resetSource.st │ │ │ ├── theClass..st │ │ │ ├── theClass.st │ │ │ ├── tryDeleteProtocol.st │ │ │ ├── ui.st │ │ │ ├── updateFont.st │ │ │ └── updateProtocol..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViProtocolEditorUi.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── dropTarget.st │ │ │ ├── initializePanel.st │ │ │ └── nameEdit.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViProtocolEditorView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── initialize.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViProxyObject.class │ │ ├── README.md │ │ ├── class │ │ │ ├── evaluateCode..st │ │ │ ├── evaluateCodeRemote..st │ │ │ ├── from..st │ │ │ ├── from.type..st │ │ │ ├── isOfPrimitiveType..st │ │ │ ├── resetClient.st │ │ │ └── resetServer.st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── acceptObjectService..st │ │ │ ├── accessString..st │ │ │ ├── accessString.st │ │ │ ├── asList.st │ │ │ ├── classBehindProxy.st │ │ │ ├── copyFrom..st │ │ │ ├── do..st │ │ │ ├── doesNotUnderstand..st │ │ │ ├── explore.st │ │ │ ├── explorerContents.st │ │ │ ├── hash.st │ │ │ ├── in..st │ │ │ ├── inspect.st │ │ │ ├── perform.withArguments..st │ │ │ ├── printOn..st │ │ │ ├── respondsTo..st │ │ │ ├── returnType..st │ │ │ ├── returnType.st │ │ │ ├── shouldBePrintedAsLiteralVisiting..st │ │ │ └── species.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViQueryCodeBlock.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── sourceCode..st │ │ │ ├── sourceCode.st │ │ │ └── storeOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViQueryCommand.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── asDictionary.st │ │ │ ├── commandExecutionChangesObject.st │ │ │ ├── definition..st │ │ │ ├── definition.st │ │ │ ├── execute.st │ │ │ ├── executeWith..st │ │ │ ├── hash.st │ │ │ ├── icon..st │ │ │ ├── icon.st │ │ │ ├── iconCode..st │ │ │ ├── iconCode.st │ │ │ ├── id..st │ │ │ ├── isGlobal.st │ │ │ ├── isRegistered.st │ │ │ ├── label..st │ │ │ ├── label.st │ │ │ ├── loadFromDictionary..st │ │ │ ├── mergeFromDictionary..st │ │ │ ├── printOn..st │ │ │ ├── referenceInArchive.st │ │ │ ├── references.st │ │ │ ├── register.st │ │ │ ├── setDefinition..st │ │ │ ├── setLabel..st │ │ │ └── unregister.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViQueryCommandsBar.class │ │ ├── README.md │ │ ├── class │ │ │ ├── appropriateSnippetsFor..st │ │ │ └── commandsForObjects..st │ │ ├── instance │ │ │ ├── activated..st │ │ │ ├── addCommandForSnippet..st │ │ │ ├── chooseSnippet.st │ │ │ ├── commands.st │ │ │ ├── createButtonForCommand..st │ │ │ ├── hideAddButton.st │ │ │ ├── initialize.st │ │ │ ├── showAddButton.st │ │ │ └── updateForObjects..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViQuerySnippetDefinition.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── asDictionary.st │ │ │ ├── block.st │ │ │ ├── inputKind..st │ │ │ ├── inputKind.st │ │ │ ├── isSnippetDefinition.st │ │ │ ├── loadFromDictionary..st │ │ │ ├── mergeFromDictionary..st │ │ │ ├── method.st │ │ │ ├── receiverIsCollection..st │ │ │ ├── receiverIsCollection.st │ │ │ ├── retain.st │ │ │ ├── sourceCode..st │ │ │ └── storeDataOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViQueryTextEditor.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── clear.st │ │ │ ├── group.st │ │ │ ├── initializeArtifact.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ └── step.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViQueryToolbar.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addGroup.icon.contents.helpText..st │ │ │ ├── addQuery..st │ │ │ ├── initializePrimaryList.st │ │ │ ├── initializeSecondaryList.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── refreshFromEditor..st │ │ │ ├── selectGroup..st │ │ │ ├── updatePropertiesForModel..st │ │ │ └── updateSortOrderForModel..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViRecentlyUsedHistory.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addObject..st │ │ │ └── ensureLimit.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViResizeHandle.class │ │ ├── README.md │ │ ├── class │ │ │ └── isWidgetClass.st │ │ ├── instance │ │ │ ├── addGrips.st │ │ │ ├── doHandleMovement..st │ │ │ ├── fadeIn.st │ │ │ ├── fadeInInstantly.st │ │ │ ├── fadeOut.st │ │ │ ├── fadeOutInstantly.st │ │ │ ├── finishHandleMovement..st │ │ │ ├── initialize.st │ │ │ ├── minSize..st │ │ │ ├── minSize.st │ │ │ ├── onClick.st │ │ │ ├── orientation..st │ │ │ ├── orientation.st │ │ │ ├── outOfWorld..st │ │ │ ├── startHandleMovement..st │ │ │ ├── target..st │ │ │ ├── target.st │ │ │ └── updateLayout.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViResizeHandleForEdit.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── doHandleMovement..st │ │ │ └── onClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViResultsConnection.class │ │ ├── README.md │ │ ├── class │ │ │ ├── connectionKind.st │ │ │ └── icon.st │ │ ├── instance │ │ │ ├── isResults.st │ │ │ └── objects.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScatterPlotView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── configureSelectionOn..st │ │ │ ├── configureSubmorph.forNode..st │ │ │ ├── deselectAllItemsOn..st │ │ │ ├── deselectItem..st │ │ │ ├── deselectItemSilently..st │ │ │ ├── doDrag.on..st │ │ │ ├── doubleClick.on..st │ │ │ ├── drawOn..st │ │ │ ├── drawOverlayOn..st │ │ │ ├── endDrag.on..st │ │ │ ├── handleMouseMove..st │ │ │ ├── hideCross.on..st │ │ │ ├── highlightItem..st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── initialize.st │ │ │ ├── invokeMenuOn..st │ │ │ ├── isItemSelected..st │ │ │ ├── keystroke.on..st │ │ │ ├── mouseDown.on..st │ │ │ ├── mouseEnter.on..st │ │ │ ├── mouseLeave.on..st │ │ │ ├── mouseUp.on..st │ │ │ ├── process..st │ │ │ ├── selectItem..st │ │ │ ├── selectItemSilently..st │ │ │ ├── selectedItems.st │ │ │ ├── selectedItemsOn..st │ │ │ ├── setUp..st │ │ │ ├── showCross.on..st │ │ │ ├── startDrag.on..st │ │ │ ├── unhighlightItem..st │ │ │ └── yieldSelectionOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptActivation.class │ │ ├── README.md │ │ ├── class │ │ │ └── on..st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── atEnd.st │ │ │ ├── hash.st │ │ │ ├── next.st │ │ │ ├── nextActivation.st │ │ │ ├── nextSteps..st │ │ │ ├── nextSteps.st │ │ │ ├── postCopy.st │ │ │ ├── thisStep..st │ │ │ └── thisStep.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptArchive.class │ │ ├── README.md │ │ ├── class │ │ │ ├── localArchive.st │ │ │ ├── merge.st │ │ │ ├── mergeAll.st │ │ │ └── resetLocalArchive.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptChangeEvent.class │ │ ├── README.md │ │ ├── class │ │ │ ├── changeKind.st │ │ │ ├── item.change..st │ │ │ ├── item.kind.change..st │ │ │ ├── scriptKind.st │ │ │ ├── stepKind.st │ │ │ └── supportedKinds.st │ │ ├── instance │ │ │ ├── changeKind..st │ │ │ ├── changeKind.st │ │ │ ├── isAdded.st │ │ │ ├── isCommented.st │ │ │ ├── isDoIt.st │ │ │ ├── isModified.st │ │ │ ├── isNextChanged.st │ │ │ ├── isPropertiesModified.st │ │ │ ├── isRecategorized.st │ │ │ ├── isRemoved.st │ │ │ ├── isRenamed.st │ │ │ ├── isReorganized.st │ │ │ ├── isSourceCodeChanged.st │ │ │ ├── item.kind.change..st │ │ │ ├── itemDefinition.st │ │ │ ├── itemIcon.st │ │ │ ├── itemLabel.st │ │ │ ├── itemProperties.st │ │ │ ├── itemScript..st │ │ │ ├── itemScript.st │ │ │ ├── itemSourceCode.st │ │ │ ├── itemStep..st │ │ │ ├── itemStep.st │ │ │ ├── newNext..st │ │ │ ├── newNext.st │ │ │ ├── newProperties..st │ │ │ ├── newProperties.st │ │ │ ├── newSourceCode..st │ │ │ ├── newSourceCode.st │ │ │ ├── oldNext..st │ │ │ ├── oldNext.st │ │ │ ├── oldProperties..st │ │ │ ├── oldProperties.st │ │ │ ├── oldSourceCode..st │ │ │ ├── oldSourceCode.st │ │ │ ├── onlyModelIndependentChanges.st │ │ │ ├── onlyViewIndependentChanges.st │ │ │ └── printEventKindOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptChangeNotifier.class │ │ ├── README.md │ │ ├── class │ │ │ ├── active.st │ │ │ ├── resetUniqueInstance.st │ │ │ └── uniqueInstance.st │ │ ├── instance │ │ │ ├── allChangeKinds.st │ │ │ ├── allEventSelectors.st │ │ │ ├── allItemKinds.st │ │ │ ├── doSilently..st │ │ │ ├── filter.st │ │ │ ├── initialize.st │ │ │ ├── isBroadcasting.st │ │ │ ├── noMoreNotificationsFor..st │ │ │ ├── notify.using..st │ │ │ ├── notifyEvent..st │ │ │ ├── releaseAll.st │ │ │ ├── setBroadcasting.st │ │ │ ├── step.next.changedTo..st │ │ │ ├── step.properties.changedTo..st │ │ │ ├── step.registeredIn..st │ │ │ ├── step.sourceCode.changedTo..st │ │ │ ├── step.unregisteredIn..st │ │ │ ├── subscribe.st │ │ │ ├── trigger..st │ │ │ └── unsubscribe.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptConversionFailed.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptDefinition.class │ │ ├── README.md │ │ ├── class │ │ │ ├── collectBaseClassesForContext..st │ │ │ ├── collectBaseClassesForContext.withTuples..st │ │ │ └── defaultSourceCode.st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── acceptObjectService..st │ │ │ ├── asDictionary.st │ │ │ ├── block..st │ │ │ ├── block.st │ │ │ ├── hash.st │ │ │ ├── id..st │ │ │ ├── initialize.st │ │ │ ├── isRegistered.st │ │ │ ├── isScriptDefinition.st │ │ │ ├── isSnippetDefinition.st │ │ │ ├── loadFromDictionary..st │ │ │ ├── mergeFromDictionary..st │ │ │ ├── postCopy.st │ │ │ ├── printOn..st │ │ │ ├── referenceInArchive.st │ │ │ ├── references.st │ │ │ ├── register.st │ │ │ ├── sourceCode..st │ │ │ ├── sourceCode.st │ │ │ ├── storeDataOn..st │ │ │ └── unregister.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptEditor.class │ │ ├── README.md │ │ ├── class │ │ │ ├── afterBarBackgroundColor.st │ │ │ ├── afterBarTextColor.st │ │ │ ├── beforeBarBackgroundColor.st │ │ │ ├── beforeBarTextColor.st │ │ │ ├── newScriptToolColor.st │ │ │ └── supportedTypes.st │ │ ├── instance │ │ │ ├── acceptDroppingMorph.event..st │ │ │ ├── acceptSourceCode.st │ │ │ ├── activateWizard.st │ │ │ ├── addArtifact.st │ │ │ ├── addPaneHighlights.st │ │ │ ├── addScriptToProfile.st │ │ │ ├── addStep.st │ │ │ ├── allSteps..st │ │ │ ├── allSteps.st │ │ │ ├── areScriptPropertiesVisible.st │ │ │ ├── assureAllStepsConnected.st │ │ │ ├── bindings.st │ │ │ ├── checkAllStepsConnected.st │ │ │ ├── clear.st │ │ │ ├── collapse.st │ │ │ ├── context..st │ │ │ ├── context.st │ │ │ ├── copyToClipboard.st │ │ │ ├── deactivateWizard.st │ │ │ ├── deleteScript.st │ │ │ ├── doNonReentrant..st │ │ │ ├── drawDropHighlightOn..st │ │ │ ├── drawOverlayOn..st │ │ │ ├── drawScriptEffectsOn..st │ │ │ ├── drawWizardIndicationOn..st │ │ │ ├── exploreAllProperties.st │ │ │ ├── exploreBinding..st │ │ │ ├── exploreInput.st │ │ │ ├── exploreOneProperty.st │ │ │ ├── exploreOutput.st │ │ │ ├── exploreOutputTrace.st │ │ │ ├── exploreStack.st │ │ │ ├── exploreSymbol..st │ │ │ ├── exploreViews.st │ │ │ ├── fullSourceCode..st │ │ │ ├── fullSourceCode.st │ │ │ ├── fullSourceCodeInterval..st │ │ │ ├── fullSourceCodeInterval.st │ │ │ ├── goDown.st │ │ │ ├── goDownToBottom.st │ │ │ ├── goToDeepestBlock.st │ │ │ ├── goUp.st │ │ │ ├── goUpToTop.st │ │ │ ├── grabKeyboard.st │ │ │ ├── group.st │ │ │ ├── handleMouseMove..st │ │ │ ├── hasKeyboard.st │ │ │ ├── hasUnacceptedChanges.st │ │ │ ├── hiddenBlockNodes.st │ │ │ ├── initializeArtifact.st │ │ │ ├── initializeEventHandler.st │ │ │ ├── initializeNavigationBar.st │ │ │ ├── initializePropertyBar.st │ │ │ ├── initializeReferenceBars.st │ │ │ ├── initializeResizeHandle.st │ │ │ ├── initializeSummaryContainer.st │ │ │ ├── initializeTextField.st │ │ │ ├── initializeToolbarControls.st │ │ │ ├── initializeToolbarObjects.st │ │ │ ├── initializeToolbarOperations.st │ │ │ ├── input..st │ │ │ ├── input.st │ │ │ ├── inputKind.st │ │ │ ├── interpretScript.st │ │ │ ├── interpretUpToDetect..st │ │ │ ├── interpretUpToSelf.st │ │ │ ├── isDoingNonReentrantWork.st │ │ │ ├── isScriptEndOfLevel.st │ │ │ ├── isScriptEndOfTree.st │ │ │ ├── isScriptInaccessible.st │ │ │ ├── isScriptSourceCodeVisible.st │ │ │ ├── isWizardActive.st │ │ │ ├── knowsObject..st │ │ │ ├── loadLastVersion.st │ │ │ ├── loadPreviousVersion.st │ │ │ ├── navigationBar..st │ │ │ ├── navigationBar.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── onContextChanged.st │ │ │ ├── onMouseMove..st │ │ │ ├── openScript.st │ │ │ ├── optimalWidth.st │ │ │ ├── propertiesToIgnore.st │ │ │ ├── propertiesToString.st │ │ │ ├── propertiesToStringFrom..st │ │ │ ├── propertyBar..st │ │ │ ├── propertyBar.st │ │ │ ├── referenceAfterBar..st │ │ │ ├── referenceAfterBar.st │ │ │ ├── referenceBeforeBar..st │ │ │ ├── referenceBeforeBar.st │ │ │ ├── removePaneHighlights.st │ │ │ ├── removeScriptFromProfile.st │ │ │ ├── removeStep.st │ │ │ ├── resetClearCounter.st │ │ │ ├── scriptScriptProperties.st │ │ │ ├── scriptSourceCode.st │ │ │ ├── selectAll.st │ │ │ ├── selectBlockStatements.st │ │ │ ├── selectBlockStatementsStart.st │ │ │ ├── setFullSourceCode.st │ │ │ ├── setFullSourceCodeInterval.st │ │ │ ├── setFullSourceCodeProperties.st │ │ │ ├── setScriptTemplate.st │ │ │ ├── setVisibleSourceCode.st │ │ │ ├── specialProperties.st │ │ │ ├── textField..st │ │ │ ├── textField.st │ │ │ ├── thisStep..st │ │ │ ├── thisStep.st │ │ │ ├── tryAddScriptToProfile.st │ │ │ ├── tryClose.st │ │ │ ├── tryDeleteScript.st │ │ │ ├── tryQuickClear.st │ │ │ ├── tryRemoveScriptFromProfile.st │ │ │ ├── updateBindings.st │ │ │ ├── updateFromChangedScript..st │ │ │ ├── updateInput.st │ │ │ ├── updateNavigationBar.st │ │ │ ├── updateObject.st │ │ │ ├── updateObjectProperties..st │ │ │ ├── updatePropertyBar.st │ │ │ ├── updateReferenceBars.st │ │ │ ├── updateUi.st │ │ │ ├── versions.st │ │ │ ├── viewExpectedObjectProperties.st │ │ │ ├── viewExpectedScriptProperties.st │ │ │ ├── visibleSourceCode..st │ │ │ ├── visibleSourceCode.st │ │ │ └── wantsDroppedMorph.event..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptEditorView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── initialize.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptEnumerator.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── interpretObjectTransformation.st │ │ │ ├── interpretPropertyExtraction.st │ │ │ └── objects.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptInterpreter.class │ │ ├── README.md │ │ ├── class │ │ │ ├── collapseTuples..st │ │ │ ├── divisionOfTuples..st │ │ │ ├── expandTuple..st │ │ │ ├── expandTuples..st │ │ │ ├── fromNode..st │ │ │ ├── on..st │ │ │ ├── on.using..st │ │ │ ├── packTuples..st │ │ │ ├── productOfCollections..st │ │ │ └── unpackTuples..st │ │ ├── instance │ │ │ ├── activateNext.st │ │ │ ├── atEnd.st │ │ │ ├── bind.to..st │ │ │ ├── bindings..st │ │ │ ├── bindings.st │ │ │ ├── clearObjects.st │ │ │ ├── clearObjectsAndProperties.st │ │ │ ├── clearProperties.st │ │ │ ├── createNodes.st │ │ │ ├── doNext.st │ │ │ ├── first..st │ │ │ ├── first.st │ │ │ ├── hasObjects.st │ │ │ ├── hasProperties.st │ │ │ ├── initialize.st │ │ │ ├── interpretObjectTransformation.st │ │ │ ├── interpretPropertyExtraction.st │ │ │ ├── interpretScript.st │ │ │ ├── next..st │ │ │ ├── next.st │ │ │ ├── objects..st │ │ │ ├── objects.st │ │ │ ├── objectsCache.st │ │ │ ├── prepareAsynchronousExecution.st │ │ │ ├── properties..st │ │ │ ├── properties.st │ │ │ ├── propertiesFor..st │ │ │ ├── propertiesFor.ifNone..st │ │ │ ├── simulatePropertyExtraction.st │ │ │ ├── stack..st │ │ │ ├── stack.st │ │ │ ├── upToDetect..st │ │ │ ├── upToEnd.st │ │ │ ├── upToEndCollectTypes.st │ │ │ ├── upToExtraction.st │ │ │ ├── upToExtractionDo..st │ │ │ ├── upToNextPropertiesAsync.st │ │ │ ├── upToNextPropertiesForced.st │ │ │ ├── upToStep..st │ │ │ └── withBindingsDo..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptNotFound.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptNotInterpreted.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptObject.class │ │ ├── README.md │ │ ├── class │ │ │ └── newFrom..st │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── adoptOrganization..st │ │ │ ├── asDictionary.st │ │ │ ├── converter.st │ │ │ ├── creationAuthor.st │ │ │ ├── creationTimeStamp.st │ │ │ ├── hasProperty..st │ │ │ ├── id..st │ │ │ ├── id.st │ │ │ ├── initialize.st │ │ │ ├── isDefault.st │ │ │ ├── isRegistered.st │ │ │ ├── loadFromDictionary..st │ │ │ ├── mergeFromDictionary..st │ │ │ ├── notifier.st │ │ │ ├── organization..st │ │ │ ├── organization.st │ │ │ ├── postCopy.st │ │ │ ├── properties..st │ │ │ ├── properties.st │ │ │ ├── references.st │ │ │ ├── register.st │ │ │ ├── setCreationInformation.st │ │ │ ├── setProperty.toValue..st │ │ │ ├── unregister.st │ │ │ ├── valueOfProperty..st │ │ │ └── valueOfProperty.ifAbsent..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptOrganizer.class │ │ ├── README.md │ │ ├── class │ │ │ └── active.st │ │ ├── instance │ │ │ ├── allCallsOn..st │ │ │ ├── categoryOfElement..st │ │ │ ├── changeCommandIdFrom.to..st │ │ │ ├── changeDefinitionIdFrom.to..st │ │ │ ├── changeStepIdFrom.to..st │ │ │ ├── classify.under..st │ │ │ ├── commandById..st │ │ │ ├── commands.st │ │ │ ├── definitionById..st │ │ │ ├── definitions.st │ │ │ ├── deleteInvisibleSteps.st │ │ │ ├── deleteStep..st │ │ │ ├── globalCommands.st │ │ │ ├── globalQueries.st │ │ │ ├── hasCommand..st │ │ │ ├── hasDefinition..st │ │ │ ├── hasStep..st │ │ │ ├── notifier..st │ │ │ ├── notifier.st │ │ │ ├── orderedCommands.st │ │ │ ├── orderedDefinitions.st │ │ │ ├── orderedSteps.st │ │ │ ├── referencesToDefinition..st │ │ │ ├── referencesToStep..st │ │ │ ├── registerAllReachableStepsAndDefinitions.st │ │ │ ├── registerCommand..st │ │ │ ├── registerDefinition..st │ │ │ ├── registerStep..st │ │ │ ├── snippetDefinitions.st │ │ │ ├── snippetDefinitionsFor..st │ │ │ ├── stepById..st │ │ │ ├── steps.st │ │ │ ├── stepsWithLabel.st │ │ │ ├── synchronizeCaches.st │ │ │ ├── tidy.st │ │ │ ├── unregisterCommand..st │ │ │ ├── unregisterDefinition..st │ │ │ ├── unregisterStep..st │ │ │ └── unregisterUnusedDefinitions.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptReference.class │ │ ├── README.md │ │ ├── instance │ │ │ └── asDictionary.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptStep.class │ │ ├── README.md │ │ ├── class │ │ │ ├── kernelProperties.st │ │ │ ├── specialProperties.st │ │ │ ├── useHorizontalLists..st │ │ │ └── useHorizontalLists.st │ │ ├── instance │ │ │ ├── ^tilde.tilde.more.st │ │ │ ├── acceptObjectService..st │ │ │ ├── accessibleSteps.st │ │ │ ├── activate.st │ │ │ ├── adoptOrganization..st │ │ │ ├── after..st │ │ │ ├── after.st │ │ │ ├── afterAdd..st │ │ │ ├── afterScripts.st │ │ │ ├── allExtractionSteps.st │ │ │ ├── allExtractionStepsBySequence.st │ │ │ ├── allExtractionStepsDo..st │ │ │ ├── allExtractionStepsDo.ifNewSequence..st │ │ │ ├── allSteps.st │ │ │ ├── allStepsDo..st │ │ │ ├── allStepsDo.ifNewSequence..st │ │ │ ├── allStepsDo.ifNewSequence.ifRecursive..st │ │ │ ├── allStepsDo.ifRecursive..st │ │ │ ├── asDictionary.st │ │ │ ├── asReference.st │ │ │ ├── asScript.st │ │ │ ├── baseClass.st │ │ │ ├── before..st │ │ │ ├── before.st │ │ │ ├── beforeAdd..st │ │ │ ├── beforeScripts.st │ │ │ ├── breakLocalCycle.st │ │ │ ├── checkNewToolColor.st │ │ │ ├── color..st │ │ │ ├── color.st │ │ │ ├── convertLocalCycle.st │ │ │ ├── cyclicStep.st │ │ │ ├── deepCopy.st │ │ │ ├── definition..st │ │ │ ├── definition.st │ │ │ ├── editScript.st │ │ │ ├── editScriptWith..st │ │ │ ├── export.st │ │ │ ├── hasAfterScripts.st │ │ │ ├── hasBeforeScripts.st │ │ │ ├── hasLocalCycle.st │ │ │ ├── hasNext.st │ │ │ ├── icon..st │ │ │ ├── icon.st │ │ │ ├── iconCode..st │ │ │ ├── iconCode.st │ │ │ ├── id..st │ │ │ ├── inaccessibleSteps.st │ │ │ ├── initialize.st │ │ │ ├── inputCount.st │ │ │ ├── interpretScript.st │ │ │ ├── interpretScriptWith..st │ │ │ ├── isEndOfLevel.st │ │ │ ├── isEndOfTree.st │ │ │ ├── isExecutedAsynchronously..st │ │ │ ├── isExecutedAsynchronously.st │ │ │ ├── isGlobal.st │ │ │ ├── isHomogeneous.st │ │ │ ├── isHomogeneousRelaxed.st │ │ │ ├── isObjectTransformation.st │ │ │ ├── isProperty..st │ │ │ ├── isProperty.st │ │ │ ├── isPropertyExtraction.st │ │ │ ├── isRecursive.st │ │ │ ├── isRegistered.st │ │ │ ├── isScript.st │ │ │ ├── isSpecial.st │ │ │ ├── isValid.st │ │ │ ├── label..st │ │ │ ├── label.st │ │ │ ├── loadFromDictionary..st │ │ │ ├── maxPropertyCount.st │ │ │ ├── mergeFromDictionary..st │ │ │ ├── next..st │ │ │ ├── next.st │ │ │ ├── nextExtractionSteps.st │ │ │ ├── nextExtractionStepsDo..st │ │ │ ├── nextIcon.st │ │ │ ├── nextLabel.st │ │ │ ├── nextObjectNotifiers.st │ │ │ ├── nextStepAfterThisStep.st │ │ │ ├── nextSteps.st │ │ │ ├── nextStepsDo..st │ │ │ ├── normalizedKind..st │ │ │ ├── objectNotifiers.st │ │ │ ├── objectNotifiersWith..st │ │ │ ├── openScript.st │ │ │ ├── openScriptWith..st │ │ │ ├── outputCount.st │ │ │ ├── postCopy.st │ │ │ ├── printOn..st │ │ │ ├── priority.st │ │ │ ├── process..st │ │ │ ├── referenceInArchive.st │ │ │ ├── references.st │ │ │ ├── register.st │ │ │ ├── retain.st │ │ │ ├── setDefinition..st │ │ │ ├── setLabel..st │ │ │ ├── setNext..st │ │ │ ├── setProperty.toValue..st │ │ │ ├── shouldAppendExtraction.st │ │ │ ├── sourceCode..st │ │ │ ├── sourceCode.st │ │ │ ├── sourceCodeShort.st │ │ │ ├── steps.st │ │ │ ├── stepsDo..st │ │ │ ├── stepsDo.ifCyclic..st │ │ │ ├── stepsDoUnsafe..st │ │ │ ├── tags.st │ │ │ ├── tupleSize.st │ │ │ ├── unregister.st │ │ │ ├── valueOfProperty.ifAbsent..st │ │ │ ├── viewClass..st │ │ │ └── viewClass.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptTemplate.class │ │ ├── README.md │ │ ├── class │ │ │ ├── applyTemplate.toSourceCode..st │ │ │ ├── baseClassForObjects..st │ │ │ ├── convertFromAssociation..st │ │ │ ├── convertFromBlock..st │ │ │ ├── convertFromCollection..st │ │ │ ├── convertFromScript..st │ │ │ ├── convertFromString..st │ │ │ ├── convertFromSymbol..st │ │ │ ├── convertObjectProperty..st │ │ │ ├── createIdentityForGlobal.st │ │ │ ├── createIdentityForObjects..st │ │ │ ├── createIdentityForTuple..st │ │ │ ├── detectDeepestBlockNode..st │ │ │ ├── detectDeepestBlockNode.last..st │ │ │ ├── detectObjectTransformation..st │ │ │ ├── expandString..st │ │ │ ├── generateBlockVarDeclarationFor..st │ │ │ ├── generateEmptyScriptCodeFor..st │ │ │ ├── hardcodedScriptIds.st │ │ │ ├── isTransformationSelector..st │ │ │ ├── lookupGlobalScripts.st │ │ │ ├── lookupObjectPropertiesForView..st │ │ │ ├── lookupPropertiesForView.receivers.accessor.iterator..st │ │ │ ├── lookupScriptPropertiesForView..st │ │ │ ├── lookupSymbol..st │ │ │ ├── lookupSymbol.startingAt..st │ │ │ ├── lookupSymbolAsDefinition..st │ │ │ ├── lookupTemplate..st │ │ │ ├── requiredScriptIds.st │ │ │ ├── templateAllAtOnce.st │ │ │ ├── templateGlobal.st │ │ │ ├── templateGlobalInOut.st │ │ │ ├── templateProperties.st │ │ │ ├── templatePropertiesWithObject.st │ │ │ ├── templateReference.st │ │ │ ├── templateStandard.st │ │ │ ├── templateTuples.st │ │ │ ├── templateTuplesProperties.st │ │ │ ├── templateTuplesPropertiesWithoutObject.st │ │ │ ├── templateWrapper.st │ │ │ └── wrapExtractionIntoArray..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScriptVersion.class │ │ ├── README.md │ │ ├── instance │ │ │ └── asDictionary.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViScrollPaneView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── adoptPaneColor..st │ │ │ ├── content.st │ │ │ ├── initialize.st │ │ │ ├── initializeEventHandler.st │ │ │ ├── initializeScroller.st │ │ │ ├── initializeToolbar.st │ │ │ ├── scroller.st │ │ │ ├── setUp..st │ │ │ ├── toolbar.st │ │ │ ├── zoomFactor.st │ │ │ ├── zoomFit.st │ │ │ ├── zoomIn..st │ │ │ ├── zoomIn.st │ │ │ ├── zoomInEvent..st │ │ │ ├── zoomOut..st │ │ │ ├── zoomOut.st │ │ │ └── zoomOutEvent..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSelectionConnection.class │ │ ├── README.md │ │ ├── class │ │ │ ├── connectionKind.st │ │ │ └── icon.st │ │ ├── instance │ │ │ ├── isSelection.st │ │ │ └── objects.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSeparator.class │ │ ├── README.md │ │ ├── class │ │ │ └── for..st │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── label..st │ │ │ ├── label.st │ │ │ ├── labelText..st │ │ │ ├── labelText.st │ │ │ ├── object..st │ │ │ └── object.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViShadow.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addScriptBtn.st │ │ │ ├── adoptPaneColor..st │ │ │ ├── codeSnippetRequested.st │ │ │ ├── drawMessageOn..st │ │ │ ├── drawOn..st │ │ │ ├── drawShadowOn..st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── initialize.st │ │ │ ├── orientation..st │ │ │ ├── orientation.st │ │ │ ├── text..st │ │ │ └── text.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViShallowContext.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── stack..st │ │ │ └── stack.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViShallowDebugger.class │ │ ├── README.md │ │ ├── class │ │ │ └── on..st │ │ ├── instance │ │ │ ├── contextStackIndex.oldContextWas..st │ │ │ ├── contextStackIndex.st │ │ │ ├── fullyExpandStack.st │ │ │ ├── initialize.st │ │ │ ├── interruptedContext.st │ │ │ ├── interruptedProcess.st │ │ │ ├── labelString.st │ │ │ ├── pcRange.st │ │ │ ├── receiver.st │ │ │ ├── selectedContext.st │ │ │ ├── shallowException..st │ │ │ └── toggleContextStackIndex..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViShallowException.class │ │ ├── README.md │ │ ├── class │ │ │ └── for..st │ │ ├── instance │ │ │ ├── description.st │ │ │ ├── lastStep.st │ │ │ ├── sourceCodeForLastDoIt.st │ │ │ ├── stack.description..st │ │ │ └── stack.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSimpleTreeNode.class │ │ ├── README.md │ │ ├── class │ │ │ └── createSomeBigTree.st │ │ ├── instance │ │ │ ├── anySatisfy..st │ │ │ ├── children.st │ │ │ ├── collect..st │ │ │ ├── count..st │ │ │ ├── detect..st │ │ │ ├── detect.ifFound.ifNone..st │ │ │ ├── doRecursively..st │ │ │ ├── select..st │ │ │ └── sizeAll.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSketchView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── checkForNewFormSize.st │ │ │ ├── drawEvent..st │ │ │ ├── drawOn..st │ │ │ ├── initialize.st │ │ │ ├── model.st │ │ │ └── process..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSliderView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ ├── labelsBox.st │ │ │ ├── objects.st │ │ │ ├── process..st │ │ │ ├── selectObject..st │ │ │ ├── slider.st │ │ │ └── updateLabelsFor..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSmalltalkHub.class │ │ ├── README.md │ │ ├── class │ │ │ ├── default.st │ │ │ ├── get..st │ │ │ ├── getPlain..st │ │ │ ├── reset.st │ │ │ └── url.st │ │ ├── instance │ │ │ ├── listing..st │ │ │ ├── listings.st │ │ │ ├── project..st │ │ │ ├── projects.st │ │ │ ├── projectsForUser..st │ │ │ ├── user..st │ │ │ └── users.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSourceCodeEdit.class │ │ ├── README.md │ │ ├── class │ │ │ ├── isWidgetClass.st │ │ │ ├── widgetCategory.st │ │ │ ├── widgetClassIcon.st │ │ │ └── widgetClassName.st │ │ ├── instance │ │ │ ├── acceptChanges.st │ │ │ ├── activateObject..st │ │ │ ├── activateSymbol..st │ │ │ ├── artifactRequested..st │ │ │ ├── autoCreateArtifacts..st │ │ │ ├── autoCreateArtifacts.st │ │ │ ├── compile.st │ │ │ ├── drawOn..st │ │ │ ├── evaluate.st │ │ │ ├── evaluateSelection.st │ │ │ ├── focusChanged..st │ │ │ ├── informationSent..st │ │ │ ├── initialize.st │ │ │ ├── mouseWheelDown..st │ │ │ ├── mouseWheelUp..st │ │ │ ├── newArtifactRequested.st │ │ │ ├── onFocusChanged..st │ │ │ ├── onRepeatedReturnPressed..st │ │ │ ├── optimalWidth.st │ │ │ ├── parse.st │ │ │ ├── revertChanges.st │ │ │ ├── selectedSelector.st │ │ │ ├── sourceCode..st │ │ │ ├── sourceCode.st │ │ │ ├── textModelClass.st │ │ │ ├── textMorphClass.st │ │ │ ├── theClass..st │ │ │ ├── theClass.st │ │ │ └── warningSent..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSourceCodeEditor.class │ │ ├── README.md │ │ ├── class │ │ │ └── initializeCmdKeyShortcuts.st │ │ ├── instance │ │ │ ├── browseIt.st │ │ │ ├── debug.receiver.in..st │ │ │ ├── evaluateSelectionAndDo..st │ │ │ ├── exploreIt.st │ │ │ ├── implementorsOfIt.st │ │ │ ├── inspectIt.st │ │ │ ├── logScript.receiver.context.result..st │ │ │ ├── notify.at.in..st │ │ │ ├── openIt..st │ │ │ ├── openIt.st │ │ │ └── sendersOfIt.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSourceCodeLineEdit.class │ │ ├── README.md │ │ ├── class │ │ │ ├── widgetCategory.st │ │ │ └── widgetClassName.st │ │ ├── instance │ │ │ ├── initialize.st │ │ │ ├── textModelClass.st │ │ │ └── textMorphClass.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSourceCodeModel.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── bindingOf..st │ │ │ ├── bindings..st │ │ │ ├── bindings.st │ │ │ ├── completionController.st │ │ │ ├── guessTypeForName..st │ │ │ ├── hasBindingOf..st │ │ │ ├── hasBindingThatBeginsWith..st │ │ │ ├── knownNames.st │ │ │ ├── selectedClassOrMetaClass.st │ │ │ ├── theClass..st │ │ │ └── theClass.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSourceCodeParagraph.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSourceCodeSnippet.class │ │ ├── README.md │ │ ├── class │ │ │ └── withCode..st │ │ ├── instance │ │ │ ├── acceptObjectService..st │ │ │ ├── bindings..st │ │ │ ├── bindings.st │ │ │ ├── code..st │ │ │ ├── code.st │ │ │ ├── contents..st │ │ │ └── contents.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSourceCodeTextMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── contextMenu..st │ │ │ ├── contextMenu.st │ │ │ ├── defaultContextMenu.st │ │ │ ├── editorClass.st │ │ │ ├── explorerRequested..st │ │ │ ├── expressionAboutToBeEvaluated..st │ │ │ ├── expressionEvaluated..st │ │ │ ├── implementorsRequested..st │ │ │ ├── initialize.st │ │ │ ├── initializeParagraph..st │ │ │ ├── keyStroke..st │ │ │ ├── mouseUp..st │ │ │ ├── paragraphClass.st │ │ │ ├── repeatedReturnPressed..st │ │ │ ├── requestExplorer..st │ │ │ ├── requestImplementors..st │ │ │ ├── requestSenders..st │ │ │ ├── sendersRequested..st │ │ │ ├── showContextMenu..st │ │ │ └── undoRepeatedReturnPress.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSqueakChangeUpdateNotifier.class │ │ ├── README.md │ │ ├── class │ │ │ └── subject.aspect..st │ │ ├── instance │ │ │ ├── aspect..st │ │ │ ├── aspect.st │ │ │ ├── subject..st │ │ │ ├── subject.st │ │ │ ├── subscribe.st │ │ │ ├── unsubscribe.st │ │ │ ├── update..st │ │ │ └── update.with..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSqueakListView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── changed..st │ │ │ ├── initialize.st │ │ │ ├── list.st │ │ │ ├── listIndex..st │ │ │ ├── listIndex.st │ │ │ ├── listView..st │ │ │ ├── listView.st │ │ │ ├── model..st │ │ │ ├── model.st │ │ │ ├── selectedNode.st │ │ │ └── selectionChanged..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSqueakObjectEventNotifier.class │ │ ├── README.md │ │ ├── class │ │ │ └── when.from..st │ │ ├── instance │ │ │ ├── event..st │ │ │ ├── event.st │ │ │ ├── object..st │ │ │ ├── object.st │ │ │ ├── subscribe.st │ │ │ └── unsubscribe.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSqueakSystemChangeNotifier.class │ │ ├── README.md │ │ ├── class │ │ │ └── on..st │ │ ├── instance │ │ │ ├── filter.st │ │ │ ├── subscribe.st │ │ │ ├── systemChangeNotifier..st │ │ │ ├── systemChangeNotifier.st │ │ │ └── unsubscribe.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViSqueakTextView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ ├── model..st │ │ │ ├── model.st │ │ │ ├── text..st │ │ │ ├── text.st │ │ │ └── textSelection.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViStackWatcher.class │ │ ├── README.md │ │ ├── class │ │ │ ├── default.st │ │ │ ├── enableStackWatcher..st │ │ │ ├── enableStackWatcher.st │ │ │ ├── firstCall.st │ │ │ ├── runExample.st │ │ │ ├── secondCall.st │ │ │ └── thirdCall.st │ │ ├── instance │ │ │ ├── checkForEndlessRecursion.st │ │ │ ├── debugProcess..st │ │ │ ├── endlessRecursionDetected.st │ │ │ ├── isRunning.st │ │ │ ├── start.st │ │ │ ├── startOn.watchOnly..st │ │ │ ├── startWatchOnly..st │ │ │ └── stop.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViStampedHistory.class │ │ ├── README.md │ │ ├── instance │ │ │ └── addObject..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViStandardItemView.class │ │ ├── README.md │ │ ├── class │ │ │ ├── newList.st │ │ │ ├── newTable.st │ │ │ └── newTree.st │ │ ├── instance │ │ │ ├── activated..st │ │ │ ├── addResult..st │ │ │ ├── adoptPaneColor..st │ │ │ ├── cancelCurrentSearch.st │ │ │ ├── checkBlock.st │ │ │ ├── clear.st │ │ │ ├── commandsBar.st │ │ │ ├── createItemView..st │ │ │ ├── currentQueryView.st │ │ │ ├── currentSearchView.st │ │ │ ├── currentViews.st │ │ │ ├── currentVisibleView.st │ │ │ ├── doubleClicked..st │ │ │ ├── ensureSelection.st │ │ │ ├── executeCommand..st │ │ │ ├── findNext.st │ │ │ ├── finder.st │ │ │ ├── finishCurrentSearch.st │ │ │ ├── grabKeyboard.st │ │ │ ├── hasKeyboard.st │ │ │ ├── hideCommandsBar.st │ │ │ ├── hideSearchBar.st │ │ │ ├── hideSearchResults.st │ │ │ ├── initialize.st │ │ │ ├── initializeFinder.st │ │ │ ├── initializeForView..st │ │ │ ├── initializePreviewHandler.st │ │ │ ├── messageBounds.st │ │ │ ├── model.st │ │ │ ├── objects.st │ │ │ ├── onKeyStroked.on..st │ │ │ ├── onView.menuRequestedAt.for..st │ │ │ ├── onView.selectionChanged..st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── previewBounds.st │ │ │ ├── process..st │ │ │ ├── queryModel.st │ │ │ ├── reset.st │ │ │ ├── returnPressed..st │ │ │ ├── rootNode.st │ │ │ ├── searchEdit.st │ │ │ ├── searchModel.st │ │ │ ├── selectedNodes.st │ │ │ ├── setUp..st │ │ │ ├── showCommandsBar.st │ │ │ ├── showPreview.st │ │ │ ├── showSearchBar.st │ │ │ ├── showSearchResults.st │ │ │ ├── triggerPreview..st │ │ │ ├── updateForListForQuery..st │ │ │ ├── updateForQuery..st │ │ │ ├── updateForQueryExtended..st │ │ │ ├── updateForTilesForQuery..st │ │ │ ├── updateQueryCommands.st │ │ │ └── viewSpecs.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTableView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTestFeedbackMorph.class │ │ ├── README.md │ │ ├── class │ │ │ └── study01Score.st │ │ ├── instance │ │ │ ├── block..st │ │ │ ├── block.st │ │ │ ├── initialize.st │ │ │ ├── intoWorld..st │ │ │ ├── open.st │ │ │ ├── outOfWorld..st │ │ │ ├── update..st │ │ │ └── wantsHaloFromClick.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTexContentNode.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── children.st │ │ │ ├── content..st │ │ │ ├── label..st │ │ │ └── label.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTexDocumentNode.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── children.st │ │ │ └── label.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTexProject.class │ │ ├── README.md │ │ ├── class │ │ │ └── on..st │ │ ├── instance │ │ │ ├── children.st │ │ │ ├── label.st │ │ │ └── main..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTextEdit.class │ │ ├── README.md │ │ ├── instance │ │ │ └── initializeWidget.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTextStyler.class │ │ ├── README.md │ │ ├── class │ │ │ └── styleExpression..st │ │ ├── instance │ │ │ ├── attributesFor..st │ │ │ ├── customTextAttributes.st │ │ │ ├── rangesIn.setWorkspace..st │ │ │ └── styleExpression..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTextStylerForClass.class │ │ ├── README.md │ │ ├── class │ │ │ ├── resetTextAttributesByPixelHeight.st │ │ │ ├── textAttributesByPixelHeight.st │ │ │ └── textAttributesByPixelHeightAt.put..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTextView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── acceptChanges..st │ │ │ ├── addColumns..st │ │ │ ├── appendFrom.to.inGroup..st │ │ │ ├── appendGroupSeparator..st │ │ │ ├── clear.st │ │ │ ├── disconnectDefaultSignals.st │ │ │ ├── doubleClicked..st │ │ │ ├── flash.st │ │ │ ├── grabKeyboard.st │ │ │ ├── hasKeyboard.st │ │ │ ├── hovered..st │ │ │ ├── initialize.st │ │ │ ├── model.st │ │ │ ├── optimalHeight.st │ │ │ ├── optimalWidth.st │ │ │ ├── process..st │ │ │ ├── removeAllColumns.st │ │ │ ├── reset.st │ │ │ ├── returnPressed..st │ │ │ ├── script.st │ │ │ ├── setUp..st │ │ │ ├── specs..st │ │ │ └── specs.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTextViewSpec.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── editorFinisher.st │ │ │ ├── itemFor..st │ │ │ ├── overrideCodeFont..st │ │ │ └── overrideCodeFont.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViThumbnailCache.class │ │ ├── README.md │ │ ├── class │ │ │ └── default.st │ │ ├── instance │ │ │ ├── thumbnailFor..st │ │ │ ├── thumbnailFor.size..st │ │ │ ├── thumbnailForEntry..st │ │ │ ├── thumbnailForEntry.size..st │ │ │ └── thumbnails.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTilePlainView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTileView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTimedNotifier.class │ │ ├── README.md │ │ ├── class │ │ │ └── every..st │ │ ├── instance │ │ │ ├── shouldSignal..st │ │ │ ├── shouldSignal.st │ │ │ ├── signal.st │ │ │ ├── signalDelay..st │ │ │ ├── signalDelay.st │ │ │ ├── subscribe.st │ │ │ └── unsubscribe.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViToolSet.class │ │ ├── README.md │ │ ├── class │ │ │ ├── browse.selector..st │ │ │ ├── browseClass..st │ │ │ ├── browseClass.category..st │ │ │ ├── browseHierarchy.selector..st │ │ │ ├── browseMessageNames..st │ │ │ ├── browseMessageSet.name.autoSelect..st │ │ │ ├── countCategoriesIn..st │ │ │ ├── debug.context.label.contents.fullView..st │ │ │ ├── explore..st │ │ │ ├── explore.label..st │ │ │ ├── exploreMorph.fullBounds..st │ │ │ ├── fileOutClasses.results.to..st │ │ │ ├── inspect..st │ │ │ ├── inspect.label..st │ │ │ ├── interrupt.label..st │ │ │ ├── isMethodCodeCategorized..st │ │ │ ├── isTestMethod..st │ │ │ ├── lackOfCohesionInMethods.onAttributes..st │ │ │ ├── linesOfCodeForBlock..st │ │ │ ├── linesOfCodeForBlock.do..st │ │ │ ├── linesOfCodeForClass..st │ │ │ ├── linesOfCodeForClassWithoutExtensions..st │ │ │ ├── linesOfCodeForMethod..st │ │ │ ├── linesOfCodeForMethod.do..st │ │ │ ├── linesOfCodeForSourceCode.do..st │ │ │ ├── methodCategories.st │ │ │ ├── methodNullCategory.st │ │ │ ├── numberOfMethods.accessing..st │ │ │ ├── printRelativeTimeStamp..st │ │ │ ├── selectFromMethods.thatAccess..st │ │ │ ├── selectInGraphFromMethods.thatAccess..st │ │ │ ├── showPackageStack..st │ │ │ ├── showVivideStack.st │ │ │ └── spyOn.into..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTopicManager.class │ │ ├── README.md │ │ ├── class │ │ │ ├── default.st │ │ │ └── reset.st │ │ ├── instance │ │ │ ├── initialize.st │ │ │ ├── protocolOfMethod..st │ │ │ ├── topicsForMethod..st │ │ │ └── updateTopicsForPackageNamed..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTranscriptHistory.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ └── update..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTransferMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── flagSpecs..st │ │ │ ├── flagSpecs.st │ │ │ ├── iconFor..st │ │ │ ├── initDraggedMorph.st │ │ │ ├── labelFor..st │ │ │ ├── noteNewOwner..st │ │ │ ├── outOfWorld..st │ │ │ ├── passenger..st │ │ │ ├── setDefaultParameters.st │ │ │ ├── setFlags..st │ │ │ ├── showHelp.st │ │ │ ├── step.st │ │ │ ├── updateGradient.st │ │ │ ├── updateKeyStroke..st │ │ │ └── updateModifier..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTreeMapItemMorph.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── computeSubmorphElevation.st │ │ │ ├── drawBackgroundOn..st │ │ │ ├── drawLabelOn..st │ │ │ ├── drawLabelOn.color..st │ │ │ ├── drawOn..st │ │ │ ├── drawOverlayOn..st │ │ │ ├── drawSelectionOn..st │ │ │ ├── elevation..st │ │ │ ├── elevation.st │ │ │ ├── font..st │ │ │ ├── font.st │ │ │ ├── fontToUse.st │ │ │ ├── label..st │ │ │ ├── label.st │ │ │ ├── labelPosition..st │ │ │ ├── labelPosition.st │ │ │ ├── outerBounds.st │ │ │ ├── preferredCornerRadius.st │ │ │ ├── selected..st │ │ │ ├── selected.st │ │ │ ├── selectionColor.st │ │ │ └── submorphElevation.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTreeMapLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── compute..st │ │ │ └── computeVisualRepresentation.parent..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTreeMapView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addSubmorphsFor.owner..st │ │ │ ├── aggregateModel.st │ │ │ ├── aggregationBlock.st │ │ │ ├── clear.st │ │ │ ├── configureSubmorph.forNode..st │ │ │ ├── deselectAll.st │ │ │ ├── deselectItem..st │ │ │ ├── indicateKeyboardFocus.st │ │ │ ├── initializeScroller.st │ │ │ ├── layout.st │ │ │ ├── layoutSliceAndDiceFor.owner..st │ │ │ ├── layoutStripFor.owner..st │ │ │ ├── layoutStripInvertedFor.owner..st │ │ │ ├── margin.st │ │ │ ├── model.st │ │ │ ├── mouseDown.on..st │ │ │ ├── mouseEnter.on..st │ │ │ ├── mouseLeave.on..st │ │ │ ├── mouseUp.on..st │ │ │ ├── process..st │ │ │ ├── reset.st │ │ │ ├── selectItem..st │ │ │ ├── selectItemSilently..st │ │ │ ├── selectedItems.st │ │ │ ├── selectedObjects.st │ │ │ ├── setUp..st │ │ │ ├── sortByWeight.st │ │ │ ├── startDrag.event.source..st │ │ │ ├── updateSubmorphs.st │ │ │ └── updateSubmorphsFor.owner..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTreeMapVoronoiView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addSubmorphsFor.owner..st │ │ │ └── configureSubmorph.forNode..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTreePlainView.class │ │ ├── README.md │ │ ├── instance │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTreeView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViTreeViewExtended.class │ │ ├── README.md │ │ ├── instance │ │ │ └── setUp..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViUIManager.class │ │ ├── README.md │ │ ├── class │ │ │ └── isActiveManager.st │ │ ├── instance │ │ │ ├── chooseFrom.lines.title..st │ │ │ └── requestPassword..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViUnboxingDragDropSpec.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── key..st │ │ │ ├── key.st │ │ │ ├── passengerFor..st │ │ │ ├── textFor..st │ │ │ └── transferItemFor..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViVerticalLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── cellInset..st │ │ │ ├── cellInset.st │ │ │ ├── layout.in..st │ │ │ ├── layoutInset..st │ │ │ └── layoutInset.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViWindow.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── closeBoxHit.st │ │ │ ├── copyBoxHit.st │ │ │ ├── createBox..st │ │ │ ├── createCloseBox.st │ │ │ ├── createCopyBox.st │ │ │ ├── createResizeBox.st │ │ │ ├── gripThickness.st │ │ │ ├── initialize.st │ │ │ ├── initializeLabelArea.st │ │ │ ├── lookFocused.st │ │ │ ├── lookUnfocused.st │ │ │ ├── resizeBoxHit.st │ │ │ ├── setLabel..st │ │ │ └── setWindowColor..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViWindowsDashboard.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── activateWindow.st │ │ │ ├── activateWindowFromEvent.thumbnail..st │ │ │ ├── closeWindow.st │ │ │ ├── drawOn..st │ │ │ ├── initialize.st │ │ │ ├── initializeSelectionRectangle.st │ │ │ ├── initializeThumbnails.st │ │ │ ├── intoWorld..st │ │ │ ├── selectNextWindow.st │ │ │ ├── selectPreviousWindow.st │ │ │ ├── selectWindow..st │ │ │ ├── selectWindowFromEvent.thumbnail..st │ │ │ ├── selectedWindow.st │ │ │ ├── thumbnails.st │ │ │ └── updateLayout.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViWorkspace.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── bindingOf..st │ │ │ ├── bindings..st │ │ │ ├── bindings.st │ │ │ ├── completionAdditionals.st │ │ │ ├── completionController.st │ │ │ ├── guessTypeForName..st │ │ │ ├── hasBindingOf..st │ │ │ ├── hasBindingThatBeginsWith..st │ │ │ ├── knownNames.st │ │ │ └── selectedClassOrMetaClass.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViWorkspaceView.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── evaluateLastExpression.st │ │ │ ├── initialize.st │ │ │ ├── lastExpression..st │ │ │ └── lastExpression.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ViWrappingLayout.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── cellInset..st │ │ │ ├── cellInset.st │ │ │ ├── layout.in..st │ │ │ ├── layoutInset..st │ │ │ └── layoutInset.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── VivideLight.class │ │ ├── README.md │ │ ├── class │ │ │ ├── active.st │ │ │ ├── animateDataflow..st │ │ │ ├── animateDataflow.st │ │ │ ├── appName.st │ │ │ ├── appVersion.st │ │ │ ├── appVersionString.st │ │ │ ├── chooseProfile.st │ │ │ ├── defaultScriptOrganization.st │ │ │ ├── feedbackServer..st │ │ │ ├── feedbackServer.st │ │ │ ├── history.st │ │ │ ├── historyFor..st │ │ │ ├── historyReset.st │ │ │ ├── initialize.st │ │ │ ├── open.st │ │ │ ├── openProfile..st │ │ │ ├── openProfileById..st │ │ │ ├── openProfileByLabel..st │ │ │ ├── prepareSqueak.st │ │ │ ├── profiles.st │ │ │ ├── shutDown..st │ │ │ ├── startUp..st │ │ │ ├── unload.st │ │ │ ├── useClassicMode..st │ │ │ ├── useClassicMode.st │ │ │ ├── useVivideDebugger..st │ │ │ └── useVivideDebugger.st │ │ ├── instance │ │ │ ├── checkForUpdate.st │ │ │ ├── clearToolSet.st │ │ │ ├── close.st │ │ │ ├── closeAllWindows.st │ │ │ ├── disableGridding.st │ │ │ ├── drawOn..st │ │ │ ├── drawOverlayOn..st │ │ │ ├── edgeToAdhereTo.st │ │ │ ├── enableGridding.st │ │ │ ├── exploreAllViewsForScript.using..st │ │ │ ├── handleListenEvent..st │ │ │ ├── initialize.st │ │ │ ├── initializeLocator.st │ │ │ ├── initializeObjectsBar.st │ │ │ ├── initializeScriptShortcuts.st │ │ │ ├── initializeTitleBar.st │ │ │ ├── initializeToolSet.st │ │ │ ├── intoWorld..st │ │ │ ├── isAdheringToBottom.st │ │ │ ├── isAdheringToLeft.st │ │ │ ├── isAdheringToRight.st │ │ │ ├── isAdheringToTop.st │ │ │ ├── isDockingBar.st │ │ │ ├── objects.st │ │ │ ├── open.st │ │ │ ├── openAnimation..st │ │ │ ├── openArtifact..st │ │ │ ├── openArtifacts..st │ │ │ ├── openDebugger..st │ │ │ ├── openEditorForArtifact..st │ │ │ ├── openEditorForType..st │ │ │ ├── openExplorer..st │ │ │ ├── openImplementors..st │ │ │ ├── openScript..st │ │ │ ├── openScript.withObjects..st │ │ │ ├── openSenders..st │ │ │ ├── outOfWorld..st │ │ │ ├── ownerChanged.st │ │ │ ├── panes.st │ │ │ ├── profile..st │ │ │ ├── profile.st │ │ │ ├── scriptArtifacts..st │ │ │ ├── scriptArtifacts.andEdit..st │ │ │ ├── sendFeedback.st │ │ │ ├── showHowTo.st │ │ │ ├── tabAmongWindows.st │ │ │ ├── updateBounds.st │ │ │ ├── updateFromRepository.st │ │ │ ├── windowsDashboard.st │ │ │ └── yellowButtonActivity..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── VivideToolBar.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addIcon.text.receiver.selector..st │ │ │ ├── contentContainer.st │ │ │ ├── initializePreviewHandler.st │ │ │ ├── showPreview.st │ │ │ └── triggerPreview..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ └── initializers.st │ └── properties.json ├── VivideScripts.package │ ├── .filetree │ ├── .squot-contents │ ├── ViQueryArchive.class │ │ ├── README.md │ │ ├── class │ │ │ ├── command3d357a8bbafe604a94badc2941e88623.st │ │ │ ├── command4fea03ad94df94469c816ac378d2d0e5.st │ │ │ ├── command5b8a8a71a0bbb944bdc260b3f367317e.st │ │ │ ├── command6f2a858ad1ec5f40a08438c8528d3b2f.st │ │ │ ├── command7c36df21eb06d842b04108f05ab93e93.st │ │ │ ├── command81bfe1b01618de48a67d8913eb4b4564.st │ │ │ ├── command93bc2c1d521151468b304317d085c09d.st │ │ │ ├── command94f658350c5e014ea42c2408e26ff3b2.st │ │ │ ├── command9898b9d44d00954d98fd7ad14fbe2dee.st │ │ │ ├── commandbc70b4363a1c15468c932a855c00522d.st │ │ │ ├── commandc49de43560650547ac1d1d78cb3cb0fb.st │ │ │ ├── commandc6d3ac2885f2324a872510d7a20cab86.st │ │ │ ├── commandc93610dc3aebb645bec6eb824792657c.st │ │ │ ├── commandd811a72faf5db5469bb9b0df038ec7f7.st │ │ │ ├── commandfc22f15fedd2654bb9cf4162ea360191.st │ │ │ ├── def0d03c64fbdac564497712e467ce0a48e.st │ │ │ ├── def250805b91be7c7449a122ccaa6d3670c.st │ │ │ ├── def370f1a4a5473454e96c9b6249cdcd8d9.st │ │ │ ├── def4dcfff3264f3a54d955efaab62251b7d.st │ │ │ ├── def60c838c8d1a17d4ca00f3210018bcdaa.st │ │ │ ├── def690e8c357eef244c85c1020bccc1243e.st │ │ │ ├── def78f345f7529f5547b19ff5235365bce2.st │ │ │ ├── def8739979f8b09c347b65a39e7e63faa3a.st │ │ │ ├── def8aa2525491af8d40b807ff135c771e98.st │ │ │ ├── defafd86e99aa297e41ad95b40388cb2cde.st │ │ │ ├── defb4a6a1f03bb59e46bc4d84a9213e28d8.st │ │ │ ├── defc0ce300c864b7b4f98704bfbf0efa5ff.st │ │ │ ├── defc17093741f275d4591318defe81a40da.st │ │ │ ├── defe75b20277d4fe24d8ad34f7a91ea05e6.st │ │ │ ├── deff580aabf2330cf4aa12ca6207b1c8a93.st │ │ │ ├── profile.st │ │ │ ├── step0022b353daa6014ca24538faec14e32e.st │ │ │ ├── step00ab51d869ddfb4a90da3e9a2f70ef75.st │ │ │ ├── step00d6ab8802b8d34398bf44d2fb8c6ab5.st │ │ │ ├── step012db9f44e1ecc49aa55265d82592ec7.st │ │ │ ├── step0166bc3dc272b14b97b82735b475543c.st │ │ │ ├── step01ec2dd8f75a264f87e6004c321b1de9.st │ │ │ ├── step01ee0bd60573124cb84a3d699a2e3263.st │ │ │ ├── step01ee1d9f96a43848870de4f6e865c0a6.st │ │ │ ├── step02594c645f169449af33fb7d5bcdd662.st │ │ │ ├── step02e8ebf69dc2a14288660da7a72f9253.st │ │ │ ├── step0369a0d46ce39f49b251c92b852ef534.st │ │ │ ├── step03d5937adad89045beb6aaa920fd056c.st │ │ │ ├── step044ec24710c99946a6bc5044f6bc4a4d.st │ │ │ ├── step045e9d2cb29a4641b942d4b769535d4a.st │ │ │ ├── step047d9a9710d06c458228c223ea969775.st │ │ │ ├── step0502fbc66bc851459f5d4b683a4318ed.st │ │ │ ├── step05197a071395e04d90c79ba0a635f185.st │ │ │ ├── step052b52386b5004429f4f56eeaf6e07d7.st │ │ │ ├── step0547837e8ef9cd4b827d5574ea1e1c91.st │ │ │ ├── step0594439a451f284ebd02716ce0b8336e.st │ │ │ ├── step069180ba532da840b13313495d451f74.st │ │ │ ├── step070104b018c47348bdce375fa5dbc93c.st │ │ │ ├── step074a7165102004428a76a2ce9f8ab3e6.st │ │ │ ├── step07d417c7f8719c41873d4413efec391d.st │ │ │ ├── step07d98c15a20c0b459dc3ba44905e9a7a.st │ │ │ ├── step086c59441e512c4d8e179ee9bffc0d2a.st │ │ │ ├── step087bc712e2101d43b27c50a4d240b0ea.st │ │ │ ├── step08a45a5f4130084dbc955cbe8033b730.st │ │ │ ├── step08b0757a37bb0142973e5faca3677989.st │ │ │ ├── step08b44027bc56f8449826f94859a5b557.st │ │ │ ├── step095b61182295484dabfcc423d9c92e97.st │ │ │ ├── step09ffbad63a278b489dad264b9c41c6f9.st │ │ │ ├── step0a45fa5f6f7ba74bb15f868dcf6a9799.st │ │ │ ├── step0b1978b87b59484281f59f94cce1ec89.st │ │ │ ├── step0bca51add3bce949a5c734cfdb3e7c9e.st │ │ │ ├── step0bf4254ac61595498fa0434b920f8c2a.st │ │ │ ├── step0c4bac1c3acf1544bee1bf0f683849c7.st │ │ │ ├── step0c69c004a3f9134e8ba6eafca2418592.st │ │ │ ├── step0c8adf165e6c8046b0976a6dfeaa52ea.st │ │ │ ├── step0caac112a8fdc443bf49f884e1be7743.st │ │ │ ├── step0d1c954a7c22e04592caa8bcb394cef3.st │ │ │ ├── step0d396a44b27ef545a69dd25485dfe138.st │ │ │ ├── step0d7618526cd4fd4e82641ec9396e2865.st │ │ │ ├── step0d81bd3fa7d9c94ab10a6df98b09bf28.st │ │ │ ├── step0d821eecf78fd44e80df96d6b534a947.st │ │ │ ├── step0d9ec3b0a6f23642a305d1b6a7827856.st │ │ │ ├── step0de86151e883cf4c9668960b4466822e.st │ │ │ ├── step0e3c9bf8357eb2458da233ae912ace9a.st │ │ │ ├── step0ea571f72db0b843a9ee8203b56d13c9.st │ │ │ ├── step0f263fa973930a45ade8fdacace2318a.st │ │ │ ├── step0f80a3d1e8c57848b5ef561321c3d70e.st │ │ │ ├── step0fdcdea85071914bab0c5d6335ce985f.st │ │ │ ├── step1006fd361341dc4a8678ca7e4315063f.st │ │ │ ├── step11525e3eab659643be1d444ca45f2674.st │ │ │ ├── step11617cd4f3dab347b26437a8dd9e6a46.st │ │ │ ├── step117962c3a327154ab5319a15adc69887.st │ │ │ ├── step11b9014af6fa1a408446f63ddf69232f.st │ │ │ ├── step11ba89fbaa6d264a92c1cba5506abae1.st │ │ │ ├── step11f5a6a9b26d4742bf5e938ff2e033c1.st │ │ │ ├── step1258312ca457db40aa96499fda6b7623.st │ │ │ ├── step12c8f9446154604ab57f6af32a469773.st │ │ │ ├── step12f3cc3b319f8842a3d943b6034d0539.st │ │ │ ├── step13b3049f5783444d9dac479f91ffdfef.st │ │ │ ├── step146f1f571f03c0418896b575dce4a8a6.st │ │ │ ├── step14c2d4d3e9a4a049b9111bd24ba1ee34.st │ │ │ ├── step14e205f50445584a8c5f729f6226210c.st │ │ │ ├── step14f6246e2fd7f947b063767bfa454a39.st │ │ │ ├── step15556af2d4c72546a09408a896f718e0.st │ │ │ ├── step1573b08cd3a1fb43a0304ccb7ad458ac.st │ │ │ ├── step157a5c4cd1a5cf4abced696f7e70934d.st │ │ │ ├── step164491a2978d5d4e893103fff9ded75e.st │ │ │ ├── step172f485a7e690d4aa5ad7233f83da2dc.st │ │ │ ├── step177406757772764181dc431205cff3b8.st │ │ │ ├── step17c595bf6cf31143a13aa297052fd4cc.st │ │ │ ├── step181275cdbd0c36429b0d9373d885260e.st │ │ │ ├── step18533aea2a404a4fb098e14e7fdcb291.st │ │ │ ├── step1862e9705ce1734a85a5265acadcd23e.st │ │ │ ├── step19aa31e9da2d0646bcb5c43217a64c10.st │ │ │ ├── step1a41c168d8968c4dbdc8b6e9ecdd16ea.st │ │ │ ├── step1a584c05b8fcdc438564d48f2c2b954b.st │ │ │ ├── step1ab8a66adb32f44587b20c2967596906.st │ │ │ ├── step1ac241797371f14b94c692dc340bb85e.st │ │ │ ├── step1af15768bcf7b14b83c1b420955ce1e4.st │ │ │ ├── step1af811b85914fa4aa3086a17174c3d9c.st │ │ │ ├── step1b4dabb4cd8f014595b9f7b0b6a2ccd5.st │ │ │ ├── step1b7534bd882c2d458ff704510695ae1c.st │ │ │ ├── step1bb6538bc256b34b958e5996dea59092.st │ │ │ ├── step1bb9843febf1384882dc01ee3ed5468d.st │ │ │ ├── step1c8ee05c15a80443a950ee7f922427c5.st │ │ │ ├── step1cd1500ccc4d2745b9af0d52a8ccf7c4.st │ │ │ ├── step1cd2a5a305f390468fd206f0a076f80b.st │ │ │ ├── step1d58d23a244cb84e844852a3acfb1544.st │ │ │ ├── step1d71708a545679429c1cc6c37baec8c9.st │ │ │ ├── step1dce55fdc75244448ba23bba0f8d5f55.st │ │ │ ├── step1e371f1464f0004c94cae667218e38e4.st │ │ │ ├── step1e6aa701f25e1844bcd03fbe2c74df42.st │ │ │ ├── step1e74bf855561eb4d808c4e7eb6401a04.st │ │ │ ├── step1f346fc9d1d0494c8f22fa56031636cb.st │ │ │ ├── step1f71149b9a667343a8bc932007c75e1f.st │ │ │ ├── step1fb44024f23f3244bc57a9be90f3ccdb.st │ │ │ ├── step200451f46f37ab48876b2719c863b2c9.st │ │ │ ├── step2086a18226d8214ebb834b316ca429b3.st │ │ │ ├── step20b77a9da691b74e950adf46a318513c.st │ │ │ ├── step21c91c058d72194fbf60b5aff02d7a97.st │ │ │ ├── step225b70fb8963d84aa825589a864d6670.st │ │ │ ├── step226b1b773cc66e419347aa64b42e33e5.st │ │ │ ├── step2293cc01c88a35429a4dcaa8ba9c12c8.st │ │ │ ├── step22b325c1285b62428b45bf948f7079a2.st │ │ │ ├── step22d7a896a0a2af4d863ef70f5ed40ff9.st │ │ │ ├── step22eb1ddfec8caa428df30d982e958000.st │ │ │ ├── step233b181dfccc094d8b70ba191cfe05ba.st │ │ │ ├── step23d4adf141b29845aeb22b496e4ea663.st │ │ │ ├── step240cc4b3dcec8c4ebbe829ff7c118338.st │ │ │ ├── step244a371f7663214d932d5512b30c3e35.st │ │ │ ├── step24a9922a802c1543acf7ff6d8dc30bbf.st │ │ │ ├── step24d74d145e317641a5f6d6667eb3ffd2.st │ │ │ ├── step24f23db6299dcc46bb92693cb90073d6.st │ │ │ ├── step251d8797f8c8a443891de54746e9e7e2.st │ │ │ ├── step253c5b4ff617e543826d7541f49ee5ad.st │ │ │ ├── step25668ab353832a4b8bc25d22ac2cc3fe.st │ │ │ ├── step263f43b53e25214b93bef88d5ecf84b5.st │ │ │ ├── step266651fd1b710244ac4579f564404cc5.st │ │ │ ├── step26886f3d3ac0aa48adf2d31758e2e4ae.st │ │ │ ├── step268f1e29abfa184e9be90f251cf2d31b.st │ │ │ ├── step26cb48ed78b26d43893bab8f69e4090f.st │ │ │ ├── step26f3a2b2f47a644bac5f159e2365b955.st │ │ │ ├── step2771411b78421340b34e9817cf81fa72.st │ │ │ ├── step28be63168868744c9db70ec219020611.st │ │ │ ├── step28f1d911a981d447b801226c1b2a529c.st │ │ │ ├── step2902b302607d7340b97a4a497764e9d3.st │ │ │ ├── step297515f311ce2e4594a2b23a6cad1586.st │ │ │ ├── step2a5bc3f7fc5f4d42bc5d1a7c79ebf632.st │ │ │ ├── step2b022238c9a7fe4b8d2bfa5c2250af5d.st │ │ │ ├── step2b264d15bb33124e8b3f227ef7073118.st │ │ │ ├── step2b3d7c04cf7f9243b02d95fc7b500018.st │ │ │ ├── step2b5f54a675dfcd49a19e8e22f687fb05.st │ │ │ ├── step2c058a47d6e2a34fb699cb3781ed55cb.st │ │ │ ├── step2cd2a1cf90c5db48b1a2d74f204ecacf.st │ │ │ ├── step2d21437b3606d34398725e357a12de36.st │ │ │ ├── step2d49b98d3f27e14faaa8aee4706a6a0a.st │ │ │ ├── step2d85f346bb1a7248b288a0b9d762b977.st │ │ │ ├── step2dc88784e2eff54aa4eacf58d48dad44.st │ │ │ ├── step2e490b12bdf77341b90718df5b218b85.st │ │ │ ├── step2e77fdef881e274f91b744b1bb8e7e9c.st │ │ │ ├── step2ebbfcc818ea964396ea4d38fe7cf10a.st │ │ │ ├── step2efaf9924ab5ff4f8321b9aecefce974.st │ │ │ ├── step2fdb319c765a1a43863e792e14de2c1e.st │ │ │ ├── step31297e2396f54144a0413821519b9f1e.st │ │ │ ├── step317d2dd4f6026f428e660e85184667f6.st │ │ │ ├── step31d2b64c44d35c47964f83802a1f927f.st │ │ │ ├── step322373256bef9048a0d35e1f4a3e64ed.st │ │ │ ├── step322c353db95327439b11f8c0ae4041b1.st │ │ │ ├── step322d06927c3fa342aeaae25dd5a1675c.st │ │ │ ├── step328d2fd9190c6f40accdafc2029f12c4.st │ │ │ ├── step3342a24ee4eda64f980abc8e7c4674e4.st │ │ │ ├── step33a2c2eebac83b4a842dfaf5586d7042.st │ │ │ ├── step343a2282782f4d4b8e98ab5ca5e0fd36.st │ │ │ ├── step34b21752fa54c04592bfb7cbda9259ca.st │ │ │ ├── step34d74f0397696140afa3e3b7a3f2cd59.st │ │ │ ├── step34fc784ff4655b4d8acf4f6f5d16883e.st │ │ │ ├── step35047111f49d8b4ebfe121c59e369af2.st │ │ │ ├── step351577f4844119438f3cfed16aa6769d.st │ │ │ ├── step3544ebd42cabb84a88d20c15dde14360.st │ │ │ ├── step35a0fb8d428f1b4e9c15e5fe341d5e61.st │ │ │ ├── step35d776c5f8ffb749bfe79964f5f3a44c.st │ │ │ ├── step35e3497e2aff7d4aa4e96ab0b798b3ed.st │ │ │ ├── step3640f74268dde143aec9907f1f87a99b.st │ │ │ ├── step3682e953476b8b4180d47c51797e5058.st │ │ │ ├── step36a4ecd2893b604c919984cbfbffa8d4.st │ │ │ ├── step3723f748fad3d4468f95d2d495e9a9cc.st │ │ │ ├── step378f9f6a6cdf2d488649a57c4661aac7.st │ │ │ ├── step37989d230602ed44ad37440cccc8d6d9.st │ │ │ ├── step37aa1dbdbbd2b2429c7d2efb85ce5e27.st │ │ │ ├── step37e691f67120684bbf420c4cb40440b1.st │ │ │ ├── step391b43fb2481a944a2ffb8be04f07191.st │ │ │ ├── step3947aee45c3a16498884a37f2fcf75e9.st │ │ │ ├── step3949844d11c6dd41b185b338c3ca4dac.st │ │ │ ├── step3952d601cc18de4e81ebdbdbeb2ba7c2.st │ │ │ ├── step399ab6754b80fd47b25972a0a44e0766.st │ │ │ ├── step39e0739ab359364a9c0fa5b758f8f9c8.st │ │ │ ├── step3a028d6521d5c7409ce22d16d0b47a42.st │ │ │ ├── step3a47c56d3e11344a8b45cc59f6ba7fb5.st │ │ │ ├── step3b7f5dc9cd420244b6db5da06e6c8411.st │ │ │ ├── step3bc53c43eaf392408d99587e9a09d49c.st │ │ │ ├── step3c2b7af6fa287b46be3e136289f6c835.st │ │ │ ├── step3cce12f6e3d55b4082faff0f97f9844c.st │ │ │ ├── step3cd2b495be4e004181d833250b0006e8.st │ │ │ ├── step3d61a6d34a433e41bba9ed11c74649e3.st │ │ │ ├── step3d6e30b29587c542a2192c6dcc16e5f1.st │ │ │ ├── step3d9d6bb7e6bc5444b1a396219e51fe10.st │ │ │ ├── step3db4c5e34863b44d8ff1423f40829e70.st │ │ │ ├── step3dbca45def245e49975e38f04a9a7729.st │ │ │ ├── step3dcd19258f140c4ca86106178920b36d.st │ │ │ ├── step3ded3e1d2e885448a30216e605bc65a0.st │ │ │ ├── step3eddb241953313498650c86422ca0395.st │ │ │ ├── step3f2ccc8f3fd62243b5e41a2f686ed9bc.st │ │ │ ├── step3f4d3ab2a67d054b9bf8eec6d9a0bfe2.st │ │ │ ├── step3f7e4a145a931c4484e012fc74706383.st │ │ │ ├── step4011a5c2e1deed4885b3ef688751c3b8.st │ │ │ ├── step402016fc613fad41bce20e346832daa7.st │ │ │ ├── step40361e300f77964fb3b5a7fb7cc955d9.st │ │ │ ├── step4078cbfe867e564c85b0ac2edd21217d.st │ │ │ ├── step40d1ddb085db2f4db36a674fd76a74b3.st │ │ │ ├── step417f42f73ebf834ea6ec8cecfbb75b84.st │ │ │ ├── step41f64542f4fbc3418ee9d1adfceebe00.st │ │ │ ├── step42463360b3717a4baef3d75fa19c6da9.st │ │ │ ├── step427e325e4f83274faa3db1b3a19ef7e6.st │ │ │ ├── step4291e65fca68f04bbbb841cf2734c087.st │ │ │ ├── step42ae88df44e8f54896d7f86c0270cb52.st │ │ │ ├── step42ed5d046483c94482c80339789652e4.st │ │ │ ├── step42ef8b6b8cf0da4ab0750fb0146d805c.st │ │ │ ├── step432a6001f00e514ea68e4605686f7755.st │ │ │ ├── step43770565281690488e6e7364ba7aab35.st │ │ │ ├── step4483ab73df68ab43b4106de476dc855a.st │ │ │ ├── step44f56402c21ba04c8d76cecb592b4509.st │ │ │ ├── step458cbad93001ab4684584bb4c3232229.st │ │ │ ├── step45f3504e509fdf49b528bc0333f9b718.st │ │ │ ├── step45fb3a3839dc2144a747a51f5e49f729.st │ │ │ ├── step46075c8756092c4186d5a35e4089e966.st │ │ │ ├── step46326a4290717248854110159c34c0a8.st │ │ │ ├── step46817f32e66b9342a3adabe14e9713c9.st │ │ │ ├── step46b904bc22e5a84a8f30894b0f7df352.st │ │ │ ├── step47204d819a245149ad0701d582da03b4.st │ │ │ ├── step473ec1cf01e6db49a73158d0370843f8.st │ │ │ ├── step475707d222033e46886ef4249d390390.st │ │ │ ├── step4762774bb64ef14b8e4ad0fc1dc20251.st │ │ │ ├── step476a828e2f7b4b4a9c8ab515f83ac457.st │ │ │ ├── step47ebfeaff6ff624a8fc6078f452527db.st │ │ │ ├── step4844bfc065ed70479c3b32d2bd51ff66.st │ │ │ ├── step489ae0c062e565439fdeb10d002ed318.st │ │ │ ├── step491508ddc6fa864290acc9d75625985b.st │ │ │ ├── step494bc6a5c09dfc4fb22f37955f890e49.st │ │ │ ├── step494f08eafbe58341b949c5ac1b22c09b.st │ │ │ ├── step495622065589a546a3dceec92fbc070e.st │ │ │ ├── step49d802a13f51514eaccf7854f6e8d622.st │ │ │ ├── step4a0e686142f96642808b5c122c31721a.st │ │ │ ├── step4a7a5822905db043b36956f156129b87.st │ │ │ ├── step4a7cf538185acd4d8cc2bfea887bdc3f.st │ │ │ ├── step4af81413f2f7de4299527ad762137e12.st │ │ │ ├── step4b13c5ec14841b45b800ac2bd6af1360.st │ │ │ ├── step4b41a6b7f1e4b84ab82e8aded82e35a8.st │ │ │ ├── step4b63ef1b75d9fc4d977720db142525af.st │ │ │ ├── step4b813e3f30bb714c965802f84e1ecc5b.st │ │ │ ├── step4b91c6bda48d134e8d10515a06acf0cc.st │ │ │ ├── step4bab61711c6c504b98ae553b38d3d886.st │ │ │ ├── step4c0b175cebc3fb4e9b1c31b8b5b5660d.st │ │ │ ├── step4c12c1211bd1b241a64aeb10c88d5d18.st │ │ │ ├── step4c3d8ed222690a47a18673b16354aa6d.st │ │ │ ├── step4ce2b7cd1c438241a5bdca0484e682df.st │ │ │ ├── step4cfb184f6e31984fb3341c3d3b508312.st │ │ │ ├── step4da4bc91ca767546ba411367a631812d.st │ │ │ ├── step4e83040adb7bc9418c4ff03b8556fca4.st │ │ │ ├── step4ec4f26a3a169a4fbe55656f7ebc3abe.st │ │ │ ├── step4ee8e2d89bc67645b541f743df30fe9d.st │ │ │ ├── step4f59f26e7806f847a4a510f389535b0e.st │ │ │ ├── step4fb7a8a53329fd4a8dcbac3b07f6c6a9.st │ │ │ ├── step50bc0a136d3ef845bbf26c9e6df926e7.st │ │ │ ├── step51682d2b50c72d4ebbad94af2dd69be7.st │ │ │ ├── step519d344ef0312a438e4234a9f07b61f9.st │ │ │ ├── step51b916eb489bfe4ba0582713f79eca04.st │ │ │ ├── step51d8a53895c9ce4b9e21ac726be7665b.st │ │ │ ├── step51e8b6975138d94db937ee8bd4268f01.st │ │ │ ├── step522c315128b49e49ab9b469da3243562.st │ │ │ ├── step524b534fb2f52447a4d09a1769f2d123.st │ │ │ ├── step52a42afce8cf7d4593f8c5f88bd3f49b.st │ │ │ ├── step53385c7bcff8c8428efde43b039db34b.st │ │ │ ├── step53515aaf6982b048afb6e82af653f073.st │ │ │ ├── step5401af50ff0b9941b85035ffa4179d50.st │ │ │ ├── step5406f229d72e9840a58dc61752a3b24a.st │ │ │ ├── step554c12a43ed5904d8adabb3d129a200a.st │ │ │ ├── step5550da938f7a934c93bf6f5174ab3ab2.st │ │ │ ├── step55770d7ef791354ca84e9115c67743d2.st │ │ │ ├── step55d465d1f7d0c04fa61b099f2ae6b6b9.st │ │ │ ├── step5636df933a8fea449406e602b99e3101.st │ │ │ ├── step5672f69dd1351d409f5ba8d58b762aa5.st │ │ │ ├── step567bb8617ed9024cb5ec665e64cf2690.st │ │ │ ├── step56b2492ff394db42ade3e2d633f5230d.st │ │ │ ├── step56d4e61dee76514bbc24e352a53b0d46.st │ │ │ ├── step574aa5e19265754a9cdb57e45108ee46.st │ │ │ ├── step57759e79162b7647b6c7af705463339b.st │ │ │ ├── step578f3d1fbdb5b04b85fffe0c848c6af5.st │ │ │ ├── step57addd329f038e449c7146497f3e7209.st │ │ │ ├── step580b86a154c03a4fa37cd12c765b21d4.st │ │ │ ├── step5810152a258e104482c6a1d1c4ad946a.st │ │ │ ├── step587641c1faabd84da0021c90308297e1.st │ │ │ ├── step58fabb91d27b8e47b2080f6ee4958df1.st │ │ │ ├── step594a2a29f4d79447bc7d0f50be719127.st │ │ │ ├── step59836c629af9f5428a727f3fcdba7f0a.st │ │ │ ├── step59e1a354ea9e3d4db4c670d3a9eb6d48.st │ │ │ ├── step5a2edad8c307144aa4b6dfdddd2c429d.st │ │ │ ├── step5a501a24fd9a87418e5444a08209481a.st │ │ │ ├── step5b3d233ec93c0b42b8bafafb41d70a9e.st │ │ │ ├── step5b4abb4561e5164d96ae140ddcba171d.st │ │ │ ├── step5b500dbee712874d9c3c5abcc18d9283.st │ │ │ ├── step5b623d5215565c48bec548c6875ac012.st │ │ │ ├── step5b87b137752eb346a7fb46bd574a4330.st │ │ │ ├── step5bac288b036f3b409351de76b1f7cd03.st │ │ │ ├── step5c2e7b343c999341badbb111a003abb4.st │ │ │ ├── step5c3b9aae476ecc4f96a1da5e5ab421ad.st │ │ │ ├── step5caa8ce0090bdc41baa3624188233e5f.st │ │ │ ├── step5e1d1190aaa3274982c2010ce8a97d2f.st │ │ │ ├── step5e2dceb99ba3484cb969cc38d82aeaf1.st │ │ │ ├── step5e40bd1a93876f42948e0dc9439c31c8.st │ │ │ ├── step5e941cab2cc706469ed0d8493d5d3d0e.st │ │ │ ├── step5ec063434180cf4da211f78d46a2112e.st │ │ │ ├── step5f25d26e227f9b45abc1644d5e129639.st │ │ │ ├── step5fceb7521874054482a9c21cd329655f.st │ │ │ ├── step600d833722a7304b8565430e818154ce.st │ │ │ ├── step601f4f4795450e4eabefe7b5dc4c0c3e.st │ │ │ ├── step602980517d315e4ea2fc3baa3114049a.st │ │ │ ├── step6066b71f07827644873bd2c0d4d41a8a.st │ │ │ ├── step6094f78a9d34d8448e98bc414b414eb2.st │ │ │ ├── step60a1569b51d789478a007a82f2528572.st │ │ │ ├── step60f99406f09f354a9ed291ddd9060fc4.st │ │ │ ├── step61009caeb7fb434cbfab3a240dc5768a.st │ │ │ ├── step61afd65ed9435642bd3115492112b6ad.st │ │ │ ├── step62d361c42c396e47989e42b4f10c257c.st │ │ │ ├── step62ec2d2dbc826d42a3177bfe67ea01bb.st │ │ │ ├── step63358b8e81f81445b9a65e43e6316331.st │ │ │ ├── step63c840019d52ee47b4a7446b7242ea74.st │ │ │ ├── step641df55bdc10f74486f32f5eb3f970ab.st │ │ │ ├── step6432870100b2654ea36998b5ecac31fd.st │ │ │ ├── step64c67351149a5b419de2aa23b19628a8.st │ │ │ ├── step651607ab44293e44b61f86c177f0d112.st │ │ │ ├── step6538b2d10d571345abf64be841b78c42.st │ │ │ ├── step65524c28e06a0e4b85def973d5fa91df.st │ │ │ ├── step65a025ef589eed41bba54b8135bf3ba9.st │ │ │ ├── step668146bb9b8df241b4eddcc75bd19810.st │ │ │ ├── step66f64b278ccb0549a3879ab332d35ab1.st │ │ │ ├── step672be6c0ae0fe9479bfceb4abea195b3.st │ │ │ ├── step676364194db68c43aa22b3948e02e796.st │ │ │ ├── step6847631141ac34459df5321d8834e6f7.st │ │ │ ├── step688b9e53cc309341a36854f6c47e402c.st │ │ │ ├── step6900ffdc84145f4abab99602bbf21fae.st │ │ │ ├── step6a2bc04714abcb4fbd8a9a78f9bc2bea.st │ │ │ ├── step6a945c46e2f2ac418b3edadc1328d8a3.st │ │ │ ├── step6b45f38f77e7ee4aac7196c1987498fb.st │ │ │ ├── step6b51cd4ec681064ab60de1552154d686.st │ │ │ ├── step6b83183f11b1294bbfa711e681f78ad8.st │ │ │ ├── step6bb09addd327dd4abd4b47d25202dbf7.st │ │ │ ├── step6cd4db5cd2de844892b74f3c52589cf8.st │ │ │ ├── step6d395bc8bf7777499480a5230a30d62f.st │ │ │ ├── step6d55d7d63c09b044b03a0105386e67a4.st │ │ │ ├── step6d824fb8a3971a468c728c6635b89819.st │ │ │ ├── step6dcf4d7c0337da4385f9526e23934ee9.st │ │ │ ├── step6e7cdaaad4f7704ab59f3c776cecd6fb.st │ │ │ ├── step6eab0da05a97d94d84a65f930edbbd06.st │ │ │ ├── step6f20da891a7ef64d96a68b4b22691ee4.st │ │ │ ├── step7009a1e16236a2468a97918e63b9fc4a.st │ │ │ ├── step708f87dc3282814fa2afe89060b27f1b.st │ │ │ ├── step70abd3f8b6163145bfbe651358866ea6.st │ │ │ ├── step70f2866cc1934849bbc6734357c4521f.st │ │ │ ├── step71595eec69da8f45ac88b4fcd2b890c3.st │ │ │ ├── step71ddcad37128514caaa79edb1e6953b8.st │ │ │ ├── step71efc7d9c3cb724696526b74bc022b8e.st │ │ │ ├── step72bf683031d81b429ddc991381a326f0.st │ │ │ ├── step736c249139ee9f4c9abc4d4c87ef1a03.st │ │ │ ├── step738b7ab110edd147a3b090796979a5fc.st │ │ │ ├── step73c14db0512955439fe9dab9298595fb.st │ │ │ ├── step74960bc87b305845b46c415c93eeb270.st │ │ │ ├── step754c7a1e5b33a8428a8ac5f6eef88890.st │ │ │ ├── step757cd24a516ebf45ad50d29635e9bbee.st │ │ │ ├── step7585127607a784408574cc2965065a02.st │ │ │ ├── step761098d48a292a47be447677570b352e.st │ │ │ ├── step7665bebe0cf425439977ca902db88134.st │ │ │ ├── step767345095fc32841a506a361aa9446c4.st │ │ │ ├── step76abd232f0e2204482116504f20d1cfe.st │ │ │ ├── step77862f460851124eb1ff6cb2e962a0c8.st │ │ │ ├── step778ab7d2583503478b0acb8214791085.st │ │ │ ├── step78a4e23d75dc65458dfa2e3ec49b7eb8.st │ │ │ ├── step78cd19878352584e9b6b7582a5be6451.st │ │ │ ├── step78d3db6d6a90614d88f9eed2f96f9d05.st │ │ │ ├── step78e13ff4d0931140b575be2225a6eaf7.st │ │ │ ├── step78e451dfad36ef4d9e212fb3e7bae0f1.st │ │ │ ├── step7950e293a009a34d80e65dbbb6ca46d5.st │ │ │ ├── step7951779362590c4d852f1225f668aba2.st │ │ │ ├── step79c77c1fcaea9342ab06db5aad7909f0.st │ │ │ ├── step7b32938cf398a742a1ca38108a4a569b.st │ │ │ ├── step7b56c7af5bd248489eaec2af03afefde.st │ │ │ ├── step7b87d63ff0ab524eb406502817498dbb.st │ │ │ ├── step7badd43290e1ec4296d76085b40a0871.st │ │ │ ├── step7d49f967e5fd2d45a452864c859fa223.st │ │ │ ├── step7d7f7d20939a7c4e9a801915e705d82e.st │ │ │ ├── step7df281f135709440b69ef00d41128ad0.st │ │ │ ├── step7f7cb928c2c5c8408c91995fa40b1fd5.st │ │ │ ├── step7f804761434fc9439d9bd3e24e534b7f.st │ │ │ ├── step7faad50ace32d04b93a5abcb22ff458e.st │ │ │ ├── step7fd41212698dee438d8f0dc8fb2b9a9e.st │ │ │ ├── step800f6eb35d933a44b9d4965af821cc38.st │ │ │ ├── step805f3b27a219f941ada8c489c9fd753d.st │ │ │ ├── step809203fe0963ad4198c8acf61fac83bd.st │ │ │ ├── step80d8228dc6ed17448301762c72d90211.st │ │ │ ├── step8137f2f30fb0d44ba9b5af172fdbc83d.st │ │ │ ├── step8173a10aef99b643819d530c4a9f806f.st │ │ │ ├── step82277b8f15e6124f96d40a482e6e0aab.st │ │ │ ├── step82908026d4e4d04783ee741e175314a3.st │ │ │ ├── step8290f350f0112348a5277cfb1d2a5a45.st │ │ │ ├── step829e7d5e2892544aa015d5efe0983785.st │ │ │ ├── step8392e394aff92645be373e9da7fa6019.st │ │ │ ├── step83cf71976cf5554eb5352b2ebf2fb60e.st │ │ │ ├── step83e798e68b86d34090fc4a5ddf0d7351.st │ │ │ ├── step8451e0da6c997f419483316176f07642.st │ │ │ ├── step8541e0243a147d4a9ac55c521a7c4f27.st │ │ │ ├── step85478cdcdec75648b9afbbf1c6a6d389.st │ │ │ ├── step8579d16a7cedf746893390568d7c97e0.st │ │ │ ├── step86247f765b43d74882a2b2d9e56e443a.st │ │ │ ├── step8670a1c52d6ccd428922faa216a3a569.st │ │ │ ├── step8729d44582f27f4dabfa8044a4165d7f.st │ │ │ ├── step874bd7694b84dd459644c5e3a23f29de.st │ │ │ ├── step88139d33b92eb047953e68600692e3a7.st │ │ │ ├── step88256e17259b9c43973b01a903ccc633.st │ │ │ ├── step8856a15f065f0e4283fcc6e84d4f4ad1.st │ │ │ ├── step886f0764f1d27945b79b96185f6d9b54.st │ │ │ ├── step888352182a2edf43a18522dadbdc15d2.st │ │ │ ├── step88b2345b3bda5e41a90fb81c36b39fd8.st │ │ │ ├── step88b2dae61dcad94699c3183a595a8132.st │ │ │ ├── step89162c9a88474744abdb1031a61c2898.st │ │ │ ├── step894088c29d245b4092462e1a298fe761.st │ │ │ ├── step89c40fb8551c9e469651f11978e9ff30.st │ │ │ ├── step89d7f52e82713f47b6958c06854f6a85.st │ │ │ ├── step8aa2299483215647823f8e9203115b01.st │ │ │ ├── step8b5ec783b069bd44a805058c53c7f164.st │ │ │ ├── step8b960b669ca1c54bbae0ba8e5375c1f7.st │ │ │ ├── step8bea6122a305b2428d58322fca9d39ce.st │ │ │ ├── step8bef757c004d634e9db4167dccfb28d7.st │ │ │ ├── step8c87a9e9a74c3749b4bab8960612b464.st │ │ │ ├── step8c98b390c0ff494e94e4be9cfaeea24c.st │ │ │ ├── step8c98ea105364be4bb343835196faca7e.st │ │ │ ├── step8ca5adad98684e4ca40e2b9deba00f31.st │ │ │ ├── step8d3e35af10d4a3469157f3ad76331d4d.st │ │ │ ├── step8e0086dce5def948b5b5b355fc568037.st │ │ │ ├── step8ebc1c715396204d98e9e545b22d0823.st │ │ │ ├── step8ebf9a995fb3ba48ae1ee67f7a28e0ed.st │ │ │ ├── step8ed524739493214294be054478bc571b.st │ │ │ ├── step8eec0dd86d7cd54f8d45ff176d005f1b.st │ │ │ ├── step8f53a4cc854f7843a59c68a80249da1d.st │ │ │ ├── step8f80622f53f5844f807572405edfae0d.st │ │ │ ├── step8fe6639eeac54041bebf7f8ad4f3f3b6.st │ │ │ ├── step904c20d94fe8d644bd0dec510cf667f3.st │ │ │ ├── step90bb3b19d2be164ea30683db53cee32e.st │ │ │ ├── step9116a93ca93f224dabf174f2e5067a77.st │ │ │ ├── step91c9c5aa8933524c908c609b3a1fc00a.st │ │ │ ├── step923010874a3b9841bf34cfaaef53c085.st │ │ │ ├── step92eb4914ce3c1f4fb8134bd8cf3c75a6.st │ │ │ ├── step931fac93b85b1c42bcc2435f7486a3e6.st │ │ │ ├── step93b6233ea34ef54d9c6ab7eeef30e075.st │ │ │ ├── step94656720b2617643b66b32d00c16754b.st │ │ │ ├── step947402835bf2514e8eefb18ce867137a.st │ │ │ ├── step9495a7a136da3645afa0bb85011e21d1.st │ │ │ ├── step94e3fbd008adea49aa1d8bf2961de5fc.st │ │ │ ├── step94eb9234d52f0e4a81c1de2c4191893e.st │ │ │ ├── step95c74daf50da9d48956ba1e377ae9019.st │ │ │ ├── step96d77081b7de93458536a0d326322f6e.st │ │ │ ├── step96d9ab1f38366b4c9f56ee9989b7d3a8.st │ │ │ ├── step97de04417aafe745a2637000ac4db432.st │ │ │ ├── step985a7a4ba46d7744abf1de2be369fc56.st │ │ │ ├── step989369d4032d1d49adaeb70b2f36ea1e.st │ │ │ ├── step99cac90068fd1449966b015ed7762e86.st │ │ │ ├── step9a36a31289509d4e9c297386596f007f.st │ │ │ ├── step9a8f7fe5e3fe5e4e8f65c463b0cac3e9.st │ │ │ ├── step9af0df5a068aa6499aa4230c1f0217cc.st │ │ │ ├── step9b96cd37e54b5649b04dd585c24b8303.st │ │ │ ├── step9caa8ce42b829b4f8466269ee432cdd8.st │ │ │ ├── step9cab60cb31ee7f4b8cac34c9bed5c6ab.st │ │ │ ├── step9cdc94fada62e04293a100f1773d45fc.st │ │ │ ├── step9d1d6fe1e07c9f4a97aa452c1fbcc9af.st │ │ │ ├── step9d1dec9fcad6de45b2c203c8cd59b8d7.st │ │ │ ├── step9d1f7dc5d93e274bb732b08a5181ea6f.st │ │ │ ├── step9f406d0b30541b42918bee33f213228d.st │ │ │ ├── step9f893a6bd441944db3661a2e90eb5cb4.st │ │ │ ├── step9fe8fed8f944ec41b97b3eff6b3cf74f.st │ │ │ ├── stepa0430b669a7df044be09b17780bf171f.st │ │ │ ├── stepa0abb65a7c24ff4aa661579881ae45e7.st │ │ │ ├── stepa0dd65c0687c174a9c11369b8badfa15.st │ │ │ ├── stepa127f2fae9457b48b6ca53f8cdfab01b.st │ │ │ ├── stepa1816fcb1266bb438500bf8b71248ede.st │ │ │ ├── stepa34edfe9887173439abcb10f76365684.st │ │ │ ├── stepa36810b7a281b34d9d22e1f1a585db30.st │ │ │ ├── stepa3b79801e8b51848820eb0abaa56e111.st │ │ │ ├── stepa4597f8283f5f1458733996443dff441.st │ │ │ ├── stepa4ac81fcd21c7240abf868d76d2dc175.st │ │ │ ├── stepa515840fa24cb44083446f05ddcb59fb.st │ │ │ ├── stepa58a2d7b43281740a7b5288db0764a2b.st │ │ │ ├── stepa5b8674146bd5b47ab8da79879a3b859.st │ │ │ ├── stepa5bdd4b483af304c89f8f7f04e06f35c.st │ │ │ ├── stepa62c64219b1098418280932805e5b88b.st │ │ │ ├── stepa64e11c56bfc5a42a738d78d947d80da.st │ │ │ ├── stepa6b7eb35f794e7419102f303b6594f32.st │ │ │ ├── stepa6bc57c78e46fc4ba64faccbe55ab577.st │ │ │ ├── stepa709a161d05fed4497e2165f6f140ada.st │ │ │ ├── stepa718839b056226498d2efcb3995dd716.st │ │ │ ├── stepa7590d1be0ee6340a3d476e67ae30cfa.st │ │ │ ├── stepa8227c3d4a3a76458c9c09a52524ccbc.st │ │ │ ├── stepa877e0b4377f244b96e5e6616c9f8247.st │ │ │ ├── stepa8d8130a271c954eaca4bad9c8477a24.st │ │ │ ├── stepa8d9e9fc0bb3384b9baee3c1edb07163.st │ │ │ ├── stepa8f95d967f396744aca595cde8b9e75e.st │ │ │ ├── stepa941a591235f754098d68df3ef643eb5.st │ │ │ ├── stepa950d677aaeb11409923f5a2a659e541.st │ │ │ ├── stepa99ebe6509187d46800e1c081ada5011.st │ │ │ ├── stepaa3ec915c019e9418b9bf9baa09fd69a.st │ │ │ ├── stepaa53c07584c54b40b6f36bcfd0ac3b68.st │ │ │ ├── stepaaf8c9be2a91464eaa05ba436d51c006.st │ │ │ ├── stepab2beffcf1ae014ea424a1270d4facd9.st │ │ │ ├── stepab419a226d349c4f894704384cebd943.st │ │ │ ├── stepab4af50f105f424d95d136bfd2f47ad3.st │ │ │ ├── stepab5e2d3f7d8bc347a60ef14d4961675d.st │ │ │ ├── stepaba8446dad234a448fc1448e43f60d5d.st │ │ │ ├── stepac005f0e6178f74e9fdc206e86af0a7d.st │ │ │ ├── stepac1f8319046ce04db22a43df31b7abef.st │ │ │ ├── stepac3b51604403e846987bb3be159ed5dc.st │ │ │ ├── stepacc3ad3129c9cd458ccce801aaadd858.st │ │ │ ├── stepad40279566daaa47aa37eb2e5d035363.st │ │ │ ├── stepae3c2d41a7128f44a52acd39fdb3459b.st │ │ │ ├── stepae6288a6a692bf4284df1174cbab45a4.st │ │ │ ├── stepaf7030042f554940abd6c3b1a717db27.st │ │ │ ├── stepafb03b2b6810684f853c74918c6c73e3.st │ │ │ ├── stepafe34ca0aa48bd438eeb7d8059eae2d1.st │ │ │ ├── stepartifacts.st │ │ │ ├── stepb0043854ca340844a516d5c81e51c885.st │ │ │ ├── stepb04432837194df4ebcb62dc3d3395f1b.st │ │ │ ├── stepb080bd39a8a31744b982fb270b04627f.st │ │ │ ├── stepb0a45afe6a847a47a7ee76e55a59ca80.st │ │ │ ├── stepb0a9b90b4e094242901f0787b2807798.st │ │ │ ├── stepb0d75ae30b0446498258e41f89b3bfc6.st │ │ │ ├── stepb15f906e0d17994c9585d7487285b6d2.st │ │ │ ├── stepb193f637d3a4cb4b9b3e94c7b7ba29e9.st │ │ │ ├── stepb1a70f2be9ad3c4aa7e8a582e829cc3a.st │ │ │ ├── stepb1afac3a000085449dceebfda96b30b6.st │ │ │ ├── stepb234af3a9e84dd4a935c604a312f353f.st │ │ │ ├── stepb29c84be71bfb84cad6881df0d7196e7.st │ │ │ ├── stepb2c2bd304cbcac47a5a04f683a40bf26.st │ │ │ ├── stepb39849ac4d4fbb4689d3e18b72f52aea.st │ │ │ ├── stepb3a5a8de9e73f64da9603946a4e8fbe5.st │ │ │ ├── stepb3b8787175165049b09272ad966f3216.st │ │ │ ├── stepb44723c500630f4da4b71bd13591ae84.st │ │ │ ├── stepb510b1f42f4c514abd82a354adbf042f.st │ │ │ ├── stepb72e75d103bb7541a46e39fd55b28333.st │ │ │ ├── stepb732f87518c21841b5ddbd4145efb573.st │ │ │ ├── stepb81e14ce2c55114ea729a2cb482e4b71.st │ │ │ ├── stepb8dcfbd64325b94bbf953a44025557dc.st │ │ │ ├── stepba4b7a9cc7c95145a45e2cdf2b0a3940.st │ │ │ ├── stepba683fae91bbed4c985f8c12b3504e50.st │ │ │ ├── stepba8137af8a11c74d8e4bf2648a10a968.st │ │ │ ├── stepbb553ae0c81d4641964f7f27055d9c15.st │ │ │ ├── stepbc34ef9752af6c49b344cdb766681c0c.st │ │ │ ├── stepbce4eb13a02d144e96b2cd2944b85fee.st │ │ │ ├── stepbcf11958a60a6546a0c1c08cb69f40df.st │ │ │ ├── stepbd2cba9d0fb42e479e837e3ddec6640f.st │ │ │ ├── stepbda64b7c17f63247be1d13159655ec28.st │ │ │ ├── stepbdf4058bca8b8449b05cedc5ffa63ce3.st │ │ │ ├── stepbe086e52473b3d4ba8336d796588f9e6.st │ │ │ ├── stepbec0a4efc091a84488efbe4ea489648e.st │ │ │ ├── stepbf1af6b68f8af7469c2a1ab4fad1e340.st │ │ │ ├── stepbf2d198ad977ed4986f9225cbfd68155.st │ │ │ ├── stepc0319874c45b744185fef6fe2ba7e2a9.st │ │ │ ├── stepc0cac2e3ab77904fa0ed936a31a423ea.st │ │ │ ├── stepc17a5204307f044bb7845a13673d0684.st │ │ │ ├── stepc185247b7a50f045a2a1b24c4e26d2b4.st │ │ │ ├── stepc2156a98722e7b46a844364bee591c7a.st │ │ │ ├── stepc2d0a6c291d42643a28f24b6ddd117c5.st │ │ │ ├── stepc399546cfcff9046bd660f7b1f946123.st │ │ │ ├── stepc47ab7eb21ab2048a04492202f71989f.st │ │ │ ├── stepc4cd5013fa6d7a44966e79cfcaa59612.st │ │ │ ├── stepc50d0c14b3ebcf479e8a7ba23cb2c4dd.st │ │ │ ├── stepc56e2e0c6b9a7b43a503dfea27e23d82.st │ │ │ ├── stepc60eec3575e9534b9578b27a1359065f.st │ │ │ ├── stepc629f8b38251ed45b63c07d6415d137f.st │ │ │ ├── stepc656fd1e4df72247b673381f86e04eef.st │ │ │ ├── stepc65a9646727f864b9955deeac8d8dcf4.st │ │ │ ├── stepc67f97849909ad419da597b166608217.st │ │ │ ├── stepc68e2eafff3feb4b9f5174527cb495ac.st │ │ │ ├── stepc6ab183e68d36841ae9aafad5e73c5d0.st │ │ │ ├── stepc70e68dd9e93cc44a8c35fe0395e21ac.st │ │ │ ├── stepc71cedcd3e52a7428417e71572b1560e.st │ │ │ ├── stepc748e47d64235843afa440590487b99d.st │ │ │ ├── stepc7876b21782a494488e1399e5e82d6b5.st │ │ │ ├── stepc7e12f641638ba4392a55110b39063f2.st │ │ │ ├── stepc8c572a5657f6b41aa8f0014cda12185.st │ │ │ ├── stepc8d02930561846449d24456f53f464bc.st │ │ │ ├── stepc8dbe40df1ccf846b4aff648fc24e1da.st │ │ │ ├── stepc9208feb9579b54e83a343ffb87e69fa.st │ │ │ ├── stepc95c6c53431dd44d895e41f83dbc02c4.st │ │ │ ├── stepca50309f543bc84583d0749a6f7cbb2e.st │ │ │ ├── stepca622048bcebfd4db080661d9e6b7f04.st │ │ │ ├── stepcafd96b46e9f904cbb728015ce0d112f.st │ │ │ ├── stepcb114238013b3e4d9bf973b27ef3dd5a.st │ │ │ ├── stepcb92050bf3868b49bf36aacf195d2c3c.st │ │ │ ├── stepcb96415c4b856247877c589b975e69c8.st │ │ │ ├── stepcc0ed406f999fe49b8f7f627deb6cb53.st │ │ │ ├── stepcc9afa06dafe3f4786135b6306c75ac4.st │ │ │ ├── stepccb87580d74cdc47a558206c68840342.st │ │ │ ├── stepccdeb4ee852e184980822d3e37a2cf44.st │ │ │ ├── stepcdbe8071be1b984eb62a2c1b721153c0.st │ │ │ ├── stepce6fede41334d84b81765e5a33fd162f.st │ │ │ ├── stepced9b6e36a4cee4c82843ecb2492159f.st │ │ │ ├── stepcef85ed71b68134694b45415df6e3544.st │ │ │ ├── stepcf18cd020e0b344ca7ee82358865b598.st │ │ │ ├── stepcf42cf45c23cc14981f21b262f58b7d3.st │ │ │ ├── stepcf440614e202124f830d3b4a1d9eef00.st │ │ │ ├── stepcf7fdd6602719544b4a93ecca1e4a611.st │ │ │ ├── stepcfe6ad6fad06774fb19c5dc3bea7243e.st │ │ │ ├── stepcffbfe830584d2418e7b068442bd8619.st │ │ │ ├── stepclassHierarchy.st │ │ │ ├── stepd0ae6ef9b997c244a7b405e84e02e54b.st │ │ │ ├── stepd0bfa2e31713bc4e8d3dbeebe13a82dd.st │ │ │ ├── stepd1ab46b3df50534cb593d1e6683fe045.st │ │ │ ├── stepd1e78e71956eb045a15ec15acbbeab0f.st │ │ │ ├── stepd1fc3ac8c0bbcf47955a7e0b24221803.st │ │ │ ├── stepd26547cfb2f4db40936bbd8537ca6228.st │ │ │ ├── stepd2ab7b327b9eba48808cab0e89480da4.st │ │ │ ├── stepd30b0a27e492ab4c807d23bd5f7ccf4b.st │ │ │ ├── stepd346ff340c694d46ac758aa766aef148.st │ │ │ ├── stepd41601c5addb2e419d9040c5759c9647.st │ │ │ ├── stepd423159711476f428714146585f297d8.st │ │ │ ├── stepd50e64dd2c00694f9ed1a81ee1b01b81.st │ │ │ ├── stepd5cb07566c54dd4da1181174174246ff.st │ │ │ ├── stepd5db789c076fb7409144a2bd2740df7f.st │ │ │ ├── stepd61e908712152d4eb336316c41064b72.st │ │ │ ├── stepd62c865932925541b3b608b9ff46de99.st │ │ │ ├── stepd64cb754b0b75c4f803ec18c450b4216.st │ │ │ ├── stepd65616b9310e3c4d88d4b82f6ff8c6f5.st │ │ │ ├── stepd681c3f184e3ea45b9b7505c4216ddc5.st │ │ │ ├── stepd70d563fbdd718429175cf758450e227.st │ │ │ ├── stepd740eb734267924086ceb2cb2018f68a.st │ │ │ ├── stepd74bf7b995099b4caa8731ad835a95b3.st │ │ │ ├── stepd7717fb24d049a42a74d4a8e8f3a891c.st │ │ │ ├── stepd7ca2eace77dc24a9906a486603160a0.st │ │ │ ├── stepd82ec0a6a967514a953c27fcb67ec3d3.st │ │ │ ├── stepd830d99017a18c47a4a8b8c035324cef.st │ │ │ ├── stepd85efa7f95788341a11019f9ca847c76.st │ │ │ ├── stepd86f12e2c38d4e4e807e4615652c2137.st │ │ │ ├── stepd87b686730987841b98b559b668d9869.st │ │ │ ├── stepd89cc75273e40742ac29eb770d5d8fc5.st │ │ │ ├── stepd89f82e653a8324fa182a02ff606e39c.st │ │ │ ├── stepd8b2f45006353046bb39a2cec077ae4c.st │ │ │ ├── stepd95495494466474a910f42c951f8e7bb.st │ │ │ ├── stepd96e910adf735a4cb7608811fac45378.st │ │ │ ├── stepd977be3c9e8a6740bff763c0bd8811c0.st │ │ │ ├── stepd9976b61dc4ebf4aa4a6a44c2728904d.st │ │ │ ├── stepda240e4d2791be42a47a879ff7f15f76.st │ │ │ ├── stepdb94be9eb0285f46bfad28f781b0ae9e.st │ │ │ ├── stepdc8af77bcb54d74da9c2fbd92c4b2a44.st │ │ │ ├── stepdd25524a769693498a4fd4d5e5251018.st │ │ │ ├── stepdd56b3e99e71b44e9a605319116f9cdd.st │ │ │ ├── stepdd7cc16278d359468ad07e30f7b46f6d.st │ │ │ ├── stepde02f05659273144a71d76088dd47944.st │ │ │ ├── stepdebuggerBindings.st │ │ │ ├── stepdebuggerStack.st │ │ │ ├── stepded083c33dd2f04a96cf46c7dfe608dc.st │ │ │ ├── stepdefaultProperties.st │ │ │ ├── stepdefaultPropertiesExtended.st │ │ │ ├── stepdf738ebd688287439dbb746c1bba0641.st │ │ │ ├── stepdfb2af53c012e14aae231ee9009c0034.st │ │ │ ├── stepe0aac258e0208a48a68d1554883e5b23.st │ │ │ ├── stepe0d4454d01886242916d1c1f2b47e445.st │ │ │ ├── stepe12b2fbe9eec2c4d90cd9cddd8d57668.st │ │ │ ├── stepe1378983156c1d4a88b1eae6654e7fb0.st │ │ │ ├── stepe1cedd4ab4647243ad426ec318525434.st │ │ │ ├── stepe25bde3e7c879f44800a93ffa8166301.st │ │ │ ├── stepe294c1606453f54c83040b6f60761804.st │ │ │ ├── stepe2aeb51f931d4e43a8d9a68001d03b29.st │ │ │ ├── stepe2c47fce01c22d40aef44fae92dba501.st │ │ │ ├── stepe33fe689cff8ff4fb574d2a3b3986f94.st │ │ │ ├── stepe36efb5e3ac6e540af1c498872dec4b2.st │ │ │ ├── stepe3bbc4b5b67ee74f98130e88bc195009.st │ │ │ ├── stepe3c616ba4453c04bb99791416620222a.st │ │ │ ├── stepe412ba6347696448bdf0693f6bf51a84.st │ │ │ ├── stepe44e7438eba573448590a778889ab428.st │ │ │ ├── stepe45648f84feff3438972cbb555789355.st │ │ │ ├── stepe4cedfc134196a46a30665067830a9bf.st │ │ │ ├── stepe50787c61e43ad469f854bc28d2d5568.st │ │ │ ├── stepe548783510a59d408ab06f95df9b5740.st │ │ │ ├── stepe578a963cfd45641b9426e1eef180ad2.st │ │ │ ├── stepe5bd3f6cf63fb14889bc82784354babd.st │ │ │ ├── stepe614ad198010a4449759aaa2423cb69e.st │ │ │ ├── stepe61b1b9cdca80246aff493c3b091547a.st │ │ │ ├── stepe62241f332bff545a0b1a632d1e53911.st │ │ │ ├── stepe62a3f594f571c4ab8f12ea49415d52e.st │ │ │ ├── stepe62cf51d8e7ac34a875bf5017120a878.st │ │ │ ├── stepe63568e85926f6409527117c4e70e841.st │ │ │ ├── stepe65452ed42156b4db57885e9c478d9d5.st │ │ │ ├── stepe66f7ebe27a3584f836cee4cf8041d8b.st │ │ │ ├── stepe689b65927f30f4a9412ab39abc2b63e.st │ │ │ ├── stepe68d82d70f825e4f990d0b292c42da7f.st │ │ │ ├── stepe6902a58ee3c7a4993758c1501d23175.st │ │ │ ├── stepe6c86a4e3d9cde46afc1e019ab13b011.st │ │ │ ├── stepe6cb8658369738499a2cfae04d157f52.st │ │ │ ├── stepe6e2433adfdd7d4c942aae804d9b9e29.st │ │ │ ├── stepe746a613ae44894a94a1f23d4ce7da40.st │ │ │ ├── stepe81669edebe0c84e95e77ac5889d8779.st │ │ │ ├── stepe84072d2c593f549a93cd5dbeb2e3b94.st │ │ │ ├── stepe847db70263a3b49a7929d80a42da426.st │ │ │ ├── stepe89d0b5ae4fe584baed496f20385b05c.st │ │ │ ├── stepe91a4f525c394c4cb5c51311bacd5025.st │ │ │ ├── stepe95778393b928e4fa413365561ade680.st │ │ │ ├── stepe957bc9e51f13b4eac097f23d6c54160.st │ │ │ ├── stepe9b91bddc3aa964eaa7f2ccb2baacc78.st │ │ │ ├── stepe9f4b617ab3acd419a5b9f547aa04c9d.st │ │ │ ├── stepea3ee3246beb104ebbc9ca2e857d247c.st │ │ │ ├── stepeae7856b17a82746aa42f06591c95280.st │ │ │ ├── stepeb55b2aeb8c0504395aba2f9497d4956.st │ │ │ ├── stepebce0b0460c9a340a531b5c1f93c9a20.st │ │ │ ├── stepebd29250144e7b45bd3a2ad394ef1b4a.st │ │ │ ├── stepebf5af18bb7d144db688d977edb554da.st │ │ │ ├── steped1b8e40bde84443972aed9b1112c7e0.st │ │ │ ├── steped57b1e04b74094a926b2776acef9b31.st │ │ │ ├── steped5b130b8850004da2e4fa5157edc3b8.st │ │ │ ├── steped82703794ca9a45b2233148d0dc9fc9.st │ │ │ ├── steped98259d40bab843bb324e77d29904ec.st │ │ │ ├── stepedcd89de8046a844bfdec7aca99dba50.st │ │ │ ├── stepee9363991409634c81ff0389658bb3ce.st │ │ │ ├── stepef81aed0ae2d6548904f030b28e12e97.st │ │ │ ├── stepefdca18a20725c45ac9255b2a17ad4eb.st │ │ │ ├── stepefe97b2318f7b84790a1a8315d4344a7.st │ │ │ ├── stepf0de7c8470172d42860de743620ce3b4.st │ │ │ ├── stepf128659b7f02364dafc1143f418bf135.st │ │ │ ├── stepf26673ea2933404485916b54ef8f3949.st │ │ │ ├── stepf28761367eb8e94b864d61f883d28db9.st │ │ │ ├── stepf3d7bcce59e76248811fb04d54ba406d.st │ │ │ ├── stepf3edfb21509fde4c91095d13eb6b90be.st │ │ │ ├── stepf45b857ee698274cb3d6467851b2d5dc.st │ │ │ ├── stepf4f3c4ff456b3a46a1ae22320975be38.st │ │ │ ├── stepf50a996dd0c83e46bfc9b54c71e930d2.st │ │ │ ├── stepf58af729af2a594d87ebc499c1bc536b.st │ │ │ ├── stepf842c34b9696044b8de693126409c92b.st │ │ │ ├── stepf8f2564d0b66d6459646191f5736dcef.st │ │ │ ├── stepf977b925bca88e418e7a33672b08eb1d.st │ │ │ ├── stepf99cba1cd7204545ac105a57f620226d.st │ │ │ ├── stepfa3a3d8c6bcbec4a8af22ee1195bbafe.st │ │ │ ├── stepfa4cb8bff5a3134c8ce140866732e786.st │ │ │ ├── stepfae582244829944bac11ce72e6570614.st │ │ │ ├── stepfb20347b7a6fbe43bd7888492dc2d4b1.st │ │ │ ├── stepfb29cb249914764a864e6e8e1cf8ace2.st │ │ │ ├── stepfb5f9d4849cf774c921fe9598b74d2c7.st │ │ │ ├── stepfca5ba471c0b0b4d8c617eca1715c0c5.st │ │ │ ├── stepfcae92ef09ebff47be9e9e35c33c4784.st │ │ │ ├── stepfcbd4f9fbe45b445ae2e7b432040e8fd.st │ │ │ ├── stepfcc664844caf354f8f24d727784b3424.st │ │ │ ├── stepfd3c0b79142aee4e9f274da12eba946f.st │ │ │ ├── stepfd62bf2f377ce64ab62a4f2399a054e1.st │ │ │ ├── stepfdb69e0a57ea394aa74ab986817dca93.st │ │ │ ├── stepfdc9d7842f4f8a428553dfc7982b9585.st │ │ │ ├── stepfe5b7b5978d3234f8d11af30f055cb25.st │ │ │ ├── stepfea2b084266a3849818c699ce7e7042e.st │ │ │ ├── stepfea6a6124474ff4683654c45901d686a.st │ │ │ ├── stepff9ce8ad7d0d4744afbaf53a7a933bd9.st │ │ │ ├── stepformattedScripts.st │ │ │ ├── stepgroups.st │ │ │ ├── stepgroupsMinimal.st │ │ │ ├── stepgroupsUnsorted.st │ │ │ ├── stepimplementors.st │ │ │ ├── stepinheritance.st │ │ │ ├── stepmessageSet.st │ │ │ ├── stepobjectExplorer.st │ │ │ ├── stepobjectTemplates.st │ │ │ ├── steporderedSteps.st │ │ │ ├── stepoutline.st │ │ │ ├── steppaneHierarchy.st │ │ │ ├── steprecentlyOpened.st │ │ │ ├── steprecoverUnsavedScripts.st │ │ │ ├── stepsenders.st │ │ │ ├── stepsendersScripts.st │ │ │ ├── steptools.st │ │ │ ├── steptranscript.st │ │ │ ├── stepunsavedChanges.st │ │ │ ├── stepunsavedScripts.st │ │ │ └── stepworkspace.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ └── initializers.st │ └── properties.json └── VivideTests.package │ ├── .filetree │ ├── .squot-contents │ ├── ViArtifactContainerTests.class │ ├── README.md │ ├── class │ │ └── isAbstract.st │ ├── instance │ │ ├── setUp.st │ │ ├── setUpWindow.st │ │ ├── subjectClass.st │ │ └── tearDown.st │ ├── methodProperties.json │ └── properties.json │ ├── ViArtifactListViewTests.class │ ├── README.md │ ├── instance │ │ ├── setUp.st │ │ ├── tearDown.st │ │ ├── test01Objects.st │ │ ├── test02ObjectsDuplicate.st │ │ ├── test03ModelRead.st │ │ ├── test04ModelChange.st │ │ ├── test05ModelWrite.st │ │ ├── test06OpenEditorForObject.st │ │ └── test07NonIdentityScript.st │ ├── methodProperties.json │ └── properties.json │ ├── ViConverterForClassArchiveTests.class │ ├── README.md │ ├── instance │ │ ├── converterClass.st │ │ ├── performTest.st │ │ ├── setUp.st │ │ ├── tearDown.st │ │ ├── test01ReadWriteSteps.st │ │ ├── test02ImportExportProfile.st │ │ ├── test03ResolveIds.st │ │ ├── test04CleanUpOrganization.st │ │ └── test05CleanUpArchive.st │ ├── methodProperties.json │ └── properties.json │ ├── ViConverterTests.class │ ├── README.md │ ├── class │ │ └── shouldInheritSelectors.st │ ├── instance │ │ ├── converterClass.st │ │ ├── exampleOrganization.st │ │ ├── exampleProfile.st │ │ ├── exampleScripts.st │ │ ├── setUp.st │ │ ├── test01ExtractSteps.st │ │ ├── test02MergeStep.st │ │ └── test03MergeProfile.st │ ├── methodProperties.json │ └── properties.json │ ├── ViFrequentlyUsedHistoryTests.class │ ├── README.md │ ├── instance │ │ ├── orderedFrequencies.st │ │ ├── subjectClass.st │ │ ├── test01Frequency.st │ │ ├── test02FrequencyLimit.st │ │ ├── test03FrequencyNormalization.st │ │ ├── test04FrequencyNormalizationOnRemove.st │ │ ├── test05Equality.st │ │ ├── test07ChangeLimitLarge.st │ │ └── test08Order.st │ ├── methodProperties.json │ └── properties.json │ ├── ViModelNodeTests.class │ ├── README.md │ ├── instance │ │ ├── processDeferredUpdates.st │ │ ├── test01ExtractPropertyAsReadBlock.st │ │ ├── test01InterpretScript.st │ │ ├── test01NamedEventNotifier.st │ │ ├── test01ScriptSourceCodeChanged.st │ │ ├── test01SystemChangeNotifications.st │ │ ├── test02ExtractPropertyAsWriteBlock.st │ │ ├── test02ExtractedProperties.st │ │ ├── test02ObjectChangeNotifications.st │ │ ├── test02PartialUpdates.st │ │ ├── test02ScriptNextChanged.st │ │ ├── test03AllObjects.st │ │ ├── test03ChangeUpdateNotifications.st │ │ ├── test03ExtractPropertyAsReadWriteBlock.st │ │ ├── test03MergeRepeatedNotifications.st │ │ ├── test03ScriptBeforeChanged.st │ │ ├── test04AllObjectsRecursive.st │ │ ├── test04ScriptAfterChanged.st │ │ ├── test04SkipInnerNotifications.st │ │ ├── test05IdentityScript.st │ │ ├── test05ScriptExtractionChanged.st │ │ ├── test05TimedEventNotifier.st │ │ ├── test06InfiniteRecursion.st │ │ ├── test07InaccessibleSteps.st │ │ ├── test08ErrorInScript.st │ │ ├── test09InputForChildren.st │ │ ├── test10InputForChildrenObject.st │ │ ├── test11InputForChildrenObjects.st │ │ ├── test12Tuples.st │ │ ├── test13GroupByFirst.st │ │ └── test14NewInstance.st │ ├── methodProperties.json │ └── properties.json │ ├── ViMorphicTestCase.class │ ├── README.md │ ├── class │ │ └── isAbstract.st │ ├── instance │ │ ├── addScript..st │ │ ├── forceGuiUpdate.st │ │ ├── performTest.st │ │ ├── setUp.st │ │ ├── tearDown.st │ │ └── type.in..st │ ├── methodProperties.json │ └── properties.json │ ├── ViObjectChangeNotifierTests.class │ ├── README.md │ ├── instance │ │ ├── addEvent..st │ │ ├── eventCount.st │ │ ├── lastEvent.st │ │ ├── processDeferredUpdates.st │ │ ├── setUp.st │ │ ├── tearDown.st │ │ ├── test01ExternalTrigger.st │ │ ├── test02CopyObjectState.st │ │ ├── test03NoObjectCopy.st │ │ └── test04ScriptNotifier.st │ ├── methodProperties.json │ └── properties.json │ ├── ViObjectHistoryTests.class │ ├── README.md │ ├── class │ │ └── shouldInheritSelectors.st │ ├── instance │ │ ├── setUp.st │ │ ├── subjectClass.st │ │ ├── test01Size.st │ │ ├── test02Limit.st │ │ ├── test03Signals.st │ │ ├── test04ReturnAddedObject.st │ │ ├── test05ReturnRemovedObject.st │ │ ├── test06ChangeLimit.st │ │ ├── test07ChangeLimitLarge.st │ │ ├── test08Order.st │ │ └── test09AddRemoveUndefiniedObject.st │ ├── methodProperties.json │ └── properties.json │ ├── ViPaneTests.class │ ├── README.md │ ├── instance │ │ ├── performTest.st │ │ ├── setUp.st │ │ ├── tearDown.st │ │ ├── test01AllResults.st │ │ ├── test01ConnectDefault.st │ │ ├── test01MatchInputKind.st │ │ ├── test01NewInstance.st │ │ ├── test02AllResultsForRecursiveScript.st │ │ ├── test02ConnectAllResults.st │ │ ├── test02MatchGlobal.st │ │ ├── test02SimpleScenario.st │ │ ├── test03AllResultsForInfinitiveScript.st │ │ ├── test03ConnectSelectedResults.st │ │ ├── test03KnownScripts.st │ │ ├── test03MatchIdentityScript.st │ │ ├── test04MultipleProducers.st │ │ ├── test04ScriptOrganization.st │ │ ├── test04SelectedResults.st │ │ ├── test04UpdateFromScriptNotifier.st │ │ ├── test05KeepSelectedResults.st │ │ ├── test05MultipleConsumers.st │ │ ├── test05ObjectsOnly.st │ │ ├── test05UpdateFromScriptCodeChange.st │ │ ├── test06ConnectPushObjects.st │ │ ├── test06ScriptOnly.st │ │ ├── test06UpdateFromObjectChange.st │ │ ├── test07AddScript.st │ │ ├── test07ConnectPushTuples.st │ │ ├── test07UpdateFromScriptPropertyChange.st │ │ ├── test08DisconnectKeepObjects.st │ │ ├── test08KeepCurrentScript.st │ │ ├── test09DisconnectKeepTuples.st │ │ ├── test10CycleWithOnePane.st │ │ ├── test11CycleWithTwoPanes.st │ │ ├── test12CycleWithTuples.st │ │ ├── test13NoDoubleEmpty.st │ │ └── test14CycleAtLast.st │ ├── methodProperties.json │ └── properties.json │ ├── ViProfileTests.class │ ├── README.md │ ├── instance │ │ ├── performTest.st │ │ ├── test01NewEmpty.st │ │ ├── test02NewMinimal.st │ │ ├── test03SerializeAndMerge.st │ │ └── test04DefaultPropertiesView.st │ ├── methodProperties.json │ └── properties.json │ ├── ViRecentlyUsedHistoryTests.class │ ├── README.md │ ├── instance │ │ ├── subjectClass.st │ │ ├── test01SetProperty.st │ │ ├── test07ChangeLimitLarge.st │ │ └── test08Order.st │ ├── methodProperties.json │ └── properties.json │ ├── ViScriptChangeNotifierTests.class │ ├── README.md │ ├── instance │ │ ├── addEvent..st │ │ ├── eventCount.st │ │ ├── lastEvent.st │ │ ├── processDeferredUpdates.st │ │ ├── setUp.st │ │ ├── tearDown.st │ │ ├── test01RegisterUnregister.st │ │ ├── test02ChangeLabel.st │ │ ├── test03ChangeSourceCode.st │ │ ├── test04ChangeNext.st │ │ ├── test05ChangeScriptProperties.st │ │ ├── test06DoSilently.st │ │ ├── test07CountEvents.st │ │ └── test08ScriptNotifier.st │ ├── methodProperties.json │ └── properties.json │ ├── ViScriptEditorTests.class │ ├── README.md │ ├── instance │ │ ├── navigationTrace.st │ │ ├── propertyTrace.st │ │ ├── setUp.st │ │ ├── setUpWindow..st │ │ ├── setUpWindow.st │ │ ├── test01AcceptErroneousSourceCode.st │ │ ├── test01Context.st │ │ ├── test01NavigationBar.st │ │ ├── test01VisibleSourceCode.st │ │ ├── test02AcceptErroneousScriptProperties.st │ │ ├── test02AddScriptStep.st │ │ ├── test02ChangeVisibleSourceCode.st │ │ ├── test02PropertyBar.st │ │ ├── test03LoadPreviousVersion.st │ │ ├── test03RemoveScriptStep.st │ │ ├── test03WizardForNewScripts.st │ │ ├── test04CloseWindow.st │ │ ├── test04LoadLastVersion.st │ │ ├── test04WizardForNewScriptsAccept.st │ │ ├── test05AddScriptStepExport.st │ │ ├── test05CloseEditor.st │ │ ├── test05FullSourceCode.st │ │ ├── test06ChangeFullSourceCode.st │ │ ├── test06InterpretUpToSelf.st │ │ ├── test07Input.st │ │ ├── test07UpdateOnChangedSourceCode.st │ │ ├── test08InputKind.st │ │ ├── test08UpdateOnChangedProperties.st │ │ ├── test09InputForTuples.st │ │ ├── test09WizardForExistingScripts.st │ │ ├── test10InputKindForTuples.st │ │ ├── test10UnacceptedChanges.st │ │ ├── test11CodeFolding.st │ │ ├── test11InputMultipleSteps.st │ │ ├── test12CodeFoldingStability.st │ │ ├── test12InputKindMultipleSteps.st │ │ ├── test13InputForTuplesMultipleSteps.st │ │ ├── test13UnacceptedButChangedProperties.st │ │ ├── test14CodeFoldingStabilityOnChangedSourceCode.st │ │ ├── test14InputKindForTuplesMultipleSteps.st │ │ ├── test15CodeFoldingStabilityWhenAllVisible.st │ │ ├── test15WizardTemplate.st │ │ ├── test16CodeFoldingStabilityWhenCodeVisible.st │ │ ├── test16InputKindOverride.st │ │ ├── test17CodeFoldingStabilityWhenRevertingChanges.st │ │ ├── test17WizardTemplateForNewScripts.st │ │ ├── test18RemoveScriptProperty.st │ │ └── test19RemoveScriptPropertyByAccident.st │ ├── methodProperties.json │ └── properties.json │ ├── ViScriptInterpreterTests.class │ ├── README.md │ ├── instance │ │ ├── expectedFailures.st │ │ ├── test01ActivateScript.st │ │ ├── test01Bindings.st │ │ ├── test01ExtractPropertyAsReadBlock.st │ │ ├── test01Reference.st │ │ ├── test01Start.st │ │ ├── test01TuplesAsInput.st │ │ ├── test02ActivateScriptWithReferences.st │ │ ├── test02DefaultBindings.st │ │ ├── test02ExtractPropertyAsWriteBlock.st │ │ ├── test02InterpretScriptStep.st │ │ ├── test02ReferenceOnly.st │ │ ├── test02TuplesAsOutput.st │ │ ├── test03BindActiveScriptOrganizer.st │ │ ├── test03CopyScriptActivation.st │ │ ├── test03ExtractPropertyAsReadWriteBlock.st │ │ ├── test03InterpretScriptSteps.st │ │ ├── test03ReferenceCycle.st │ │ ├── test03TuplesInObjects.st │ │ ├── test04BindActiveScriptOrganizerDouble.st │ │ ├── test04BindForScriptLookup.st │ │ ├── test04GroupByFirst.st │ │ ├── test04NextActivation.st │ │ ├── test04ReferenceMultiple.st │ │ ├── test04UpToExtraction.st │ │ ├── test05ReferenceAfter.st │ │ ├── test05UpToEnd.st │ │ ├── test06ReferenceBefore.st │ │ ├── test06UpToStep.st │ │ ├── test07ReferenceAfterMultiple.st │ │ ├── test07UpToDetect.st │ │ ├── test08ReferenceBeforeMultiple.st │ │ ├── test08UpToDetectSkippingExtractions.st │ │ ├── test09ReferenceBeforeAfter.st │ │ ├── test09UpToDetectReference.st │ │ ├── test10ExtractProperties.st │ │ ├── test10ReferenceBeforeAfterMultiple.st │ │ ├── test11ExtractPropertiesOverloaded.st │ │ ├── test11ReferenceComparison.st │ │ ├── test12ExtractPropertiesOverloadedWithReference.st │ │ ├── test12ReferenceBeforeDefaultProperties.st │ │ ├── test13DefaultProperties.st │ │ ├── test13ReferenceBeforeDefaultThenDefault.st │ │ ├── test14DefaultPropertiesAtEnd.st │ │ ├── test15ExtractPropertiesWithObject.st │ │ ├── test16DuplicateObjects.st │ │ ├── test17DefaultPropertiesFallback.st │ │ ├── test18EmptyInputEmptyOutput.st │ │ ├── test19FailedExtraction.st │ │ ├── test20AppendPropertyExtractions.st │ │ └── test21FailedExtractionMerged.st │ ├── methodProperties.json │ └── properties.json │ ├── ViScriptOrganizerTests.class │ ├── README.md │ ├── instance │ │ ├── expectedFailures.st │ │ ├── setUp.st │ │ ├── test01Category.st │ │ ├── test01RegisterDefinition.st │ │ ├── test01RegisterStep.st │ │ ├── test02ChangeIdKeepCategory.st │ │ ├── test02UnregisterDefinition.st │ │ ├── test02UnregisterStep.st │ │ ├── test03ChangeStepId.st │ │ ├── test04OrganizationsAsNamespaces.st │ │ ├── test05ReferencesToStep.st │ │ ├── test06OrderByPriority.st │ │ ├── test07StepsWithLabel.st │ │ ├── test08DeleteStep.st │ │ ├── test09DeleteStepWithReferences.st │ │ ├── test10DeleteStepWithBeforeAfter.st │ │ └── test11DeleteStepWithNoReplacement.st │ ├── methodProperties.json │ └── properties.json │ ├── ViScriptTemplateTests.class │ ├── README.md │ ├── instance │ │ ├── expectedFailures.st │ │ ├── test01ExtractEach.st │ │ ├── test01IsList.st │ │ ├── test01Select.st │ │ ├── test01TemplateDetection.st │ │ ├── test01TransformEach.st │ │ ├── test01TransformInOut.st │ │ ├── test01TupleUnpack.st │ │ ├── test02AsList.st │ │ ├── test02ExtractEachWithObject.st │ │ ├── test02IgnoreInput.st │ │ ├── test02ImplicitFlatten.st │ │ ├── test02Reject.st │ │ ├── test02TransformEachExpand.st │ │ ├── test02TupleUnpackExtractEach.st │ │ ├── test03ExtractWithAutoWrap.st │ │ ├── test03InjectInto.st │ │ ├── test03NoFlattenInExtraction.st │ │ ├── test03StringAsScript.st │ │ ├── test03TransformEachReduce.st │ │ ├── test03TupleUnpackExtractEachWithObject.st │ │ ├── test04BlockAsScript.st │ │ ├── test04ExtractNew.st │ │ ├── test04NoImplicitFlattenForTransformation.st │ │ ├── test04ScriptProperties.st │ │ ├── test04Sorted.st │ │ ├── test04TupleUnpackExtractEachWithObjects.st │ │ ├── test05RetainNamesAndFormatting.st │ │ ├── test05Reversed.st │ │ ├── test05SymbolAsScript.st │ │ ├── test05TupleUnpackExtractEachWithObjectAndObjects.st │ │ ├── test06First.st │ │ ├── test06ListAsScript.st │ │ ├── test06TupleUnpackHint.st │ │ ├── test07Last.st │ │ ├── test07ListAsScriptWithSymbolReference.st │ │ ├── test07TupleFilter.st │ │ ├── test08AsTuples.st │ │ ├── test08Gather.st │ │ ├── test08ListAsScriptWithLocalReference.st │ │ ├── test09AsTuplesEmpty.st │ │ ├── test09Flattened.st │ │ ├── test09ListAsScriptWithProperties.st │ │ ├── test10Detect.st │ │ ├── test10ListAsScriptWithSymbolReferenceAndProperties.st │ │ ├── test11GroupByFirst.st │ │ ├── test11ListAsScriptWithLocalReferenceAndProperties.st │ │ ├── test12SymbolAsScriptNotFound.st │ │ ├── test12TransformAllToSingle.st │ │ ├── test13BlockAsScriptWithSymbolReference.st │ │ ├── test14ListAsScriptOrganization.st │ │ ├── test15ListAsScriptNotFoundError.st │ │ └── test16ListAsScriptWithSymbolReferenceFirst.st │ ├── methodProperties.json │ └── properties.json │ ├── ViScriptTests.class │ ├── README.md │ ├── instance │ │ ├── expectedFailures.st │ │ ├── test01CacheCompiledCode.st │ │ ├── test01Copy.st │ │ ├── test01IsEndOfLevel.st │ │ ├── test01IsRecursive.st │ │ ├── test01NewInstance.st │ │ ├── test01OrganizeSteps.st │ │ ├── test01Process.st │ │ ├── test01Steps.st │ │ ├── test02AdoptOrganization.st │ │ ├── test02CopySteps.st │ │ ├── test02InterpretScript.st │ │ ├── test02IsEndOfTree.st │ │ ├── test02NextStep.st │ │ ├── test02OrganizeDefinitions.st │ │ ├── test02RecursionVersusReuse.st │ │ ├── test02StepsNoDefault.st │ │ ├── test03AdoptOrganizationWithReferences.st │ │ ├── test03BaseClass.st │ │ ├── test03CopyScriptProperties.st │ │ ├── test03NextLabel.st │ │ ├── test03NoLocalCycles.st │ │ ├── test03RecursiveExtraction.st │ │ ├── test03StepsDo.st │ │ ├── test03SyntaxError.st │ │ ├── test04AccessibleSteps.st │ │ ├── test04BaseClassWithTuples.st │ │ ├── test04CopyRecursiveScript.st │ │ ├── test04NextIcon.st │ │ ├── test04RecursionWithReference.st │ │ ├── test04ReferenceAcrossOrganizations.st │ │ ├── test04SharedProperties.st │ │ ├── test04StepsDoNoReference.st │ │ ├── test05AsReference.st │ │ ├── test05CopyBreaksLocalCycle.st │ │ ├── test05InaccessibleSteps.st │ │ ├── test05IsDefault.st │ │ ├── test05MaxPropertyCount.st │ │ ├── test05NextSteps.st │ │ ├── test06AdoptOrganizationForDefaultScript.st │ │ ├── test06CopyWithoutDefaultScripts.st │ │ ├── test06Equality.st │ │ ├── test06IsEndOfLevelRecursive.st │ │ ├── test06NextStepsDefault.st │ │ ├── test07IsEndOfTreeRecursive.st │ │ ├── test07NextStepsWithReference.st │ │ ├── test07OrganizeStepsIdChange.st │ │ ├── test07ResolveNextReferenceLazily.st │ │ ├── test07SourceCode.st │ │ ├── test08AllSteps.st │ │ ├── test08ReferenceIdChange.st │ │ ├── test08ResolveDefinitionIdentiferLazily.st │ │ ├── test08SourceCodeShort.st │ │ ├── test09AdoptOrganizationMix.st │ │ ├── test09AllStepsDefault.st │ │ ├── test09AsDictionary.st │ │ ├── test09IconCode.st │ │ ├── test10AllStepsWithReference.st │ │ ├── test10DefaultViewClass.st │ │ ├── test10MergeFromDictionary.st │ │ ├── test11AllExtractionSteps.st │ │ ├── test11IsHomogeneous.st │ │ ├── test11LoadFromDictionary.st │ │ ├── test12AllExtractionStepsDefault.st │ │ ├── test12IsHomogeneousRelaxed.st │ │ ├── test13AllExtractionStepsWithReference.st │ │ ├── test14NextExtractionSteps.st │ │ ├── test15NextExtractionStepsDefault.st │ │ ├── test16NextExtractionStepsWithReference.st │ │ ├── test17NextExtractionStepsAcrossReference.st │ │ ├── test18AfterScripts.st │ │ └── test19BeforeScripts.st │ ├── methodProperties.json │ └── properties.json │ ├── ViStackWatcherTests.class │ ├── README.md │ ├── instance │ │ ├── defaultTimeout.st │ │ ├── forkAndSpyOn..st │ │ ├── methodA.st │ │ ├── methodB.st │ │ ├── methodC.st │ │ ├── methodD.st │ │ ├── performTest.st │ │ ├── setUp.st │ │ ├── tearDown.st │ │ ├── test01DirectCalls.st │ │ ├── test02IndirectCalls.st │ │ ├── test03ChangeUpdate.st │ │ ├── test04ChangeUpdateAgain.st │ │ ├── timeout.after..st │ │ └── update..st │ ├── methodProperties.json │ └── properties.json │ ├── ViWorkspaceTests.class │ ├── README.md │ ├── instance │ │ ├── test01OpenScript.st │ │ ├── test01Senders.st │ │ ├── test02Implementors.st │ │ ├── test02OpenScriptWith.st │ │ ├── test03Inspect.st │ │ ├── test03OpenScriptEditor.st │ │ ├── test04Explore.st │ │ ├── test04OpenToolAndScriptEditor.st │ │ ├── test05BrowseClass.st │ │ ├── test06BrowseClassHierarchy.st │ │ └── test07BrowseMessageNames.st │ ├── methodProperties.json │ └── properties.json │ ├── VivideTestCase.class │ ├── README.md │ ├── class │ │ └── isAbstract.st │ ├── instance │ │ ├── checkOrganizer.st │ │ ├── checkProfile.st │ │ ├── checkVivide.st │ │ ├── navigation.st │ │ ├── performTest.st │ │ ├── setUp.st │ │ └── tearDown.st │ ├── methodProperties.json │ └── properties.json │ ├── monticello.meta │ ├── categories.st │ └── initializers.st │ └── properties.json └── scripts ├── prepare_image.sh └── prepare_image.st /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.smalltalk.ston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/.smalltalk.ston -------------------------------------------------------------------------------- /.squot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/.squot -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/README.md -------------------------------------------------------------------------------- /howto.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/howto.zip -------------------------------------------------------------------------------- /howto/howto-categories.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/howto/howto-categories.gif -------------------------------------------------------------------------------- /howto/howto-createclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/howto/howto-createclass.gif -------------------------------------------------------------------------------- /howto/howto-createmethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/howto/howto-createmethod.gif -------------------------------------------------------------------------------- /howto/howto-createscript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/howto/howto-createscript.gif -------------------------------------------------------------------------------- /howto/howto-searchclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/howto/howto-searchclass.gif -------------------------------------------------------------------------------- /howto/howto-searchmethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/howto/howto-searchmethod.gif -------------------------------------------------------------------------------- /images/drag-drop-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/images/drag-drop-3.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/simple-script-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/images/simple-script-workflow.png -------------------------------------------------------------------------------- /repository/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/.filetree -------------------------------------------------------------------------------- /repository/BaselineOfVivide.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/BaselineOfVivide.package/.filetree -------------------------------------------------------------------------------- /repository/BaselineOfVivide.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/BaselineOfVivide.package/.squot-contents -------------------------------------------------------------------------------- /repository/BaselineOfVivide.package/BaselineOfVivide.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/BaselineOfVivide.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #BaselineOfVivide! 2 | -------------------------------------------------------------------------------- /repository/BaselineOfVivide.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/BaselineOfVivide.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/.filetree -------------------------------------------------------------------------------- /repository/Vivide.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/.squot-contents -------------------------------------------------------------------------------- /repository/Vivide.package/Array.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Array.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/Array.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Array" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Association.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Association" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Behavior.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Behavior" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/BlockClosure.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "BlockClosure" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/ByteArray.extension/instance/asList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asList 3 | 4 | ^ Array with: self -------------------------------------------------------------------------------- /repository/Vivide.package/ByteArray.extension/instance/isList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isList 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ByteArray.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ByteArray" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Categorizer.extension/instance/removeAllCategories.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | removeAllCategories 3 | 4 | self setDefaultList: elementArray. -------------------------------------------------------------------------------- /repository/Vivide.package/Categorizer.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Categorizer" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/CharacterSet.extension/instance/isList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isList 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/CharacterSet.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CharacterSet" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/ClassDescription.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ClassDescription" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/ClassReference.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ClassReference" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Collection.extension/instance/asList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asList 3 | 4 | ^ self -------------------------------------------------------------------------------- /repository/Vivide.package/Collection.extension/instance/isList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isList 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/Collection.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Collection" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Color.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Color.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/Color.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Color" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/CompiledBlock.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CompiledBlock" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/CompiledMethod.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CompiledMethod" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Context.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Context" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Date.extension/instance/year.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | year 3 | 4 | ^ self dayMonthYearDo: [:d :m :y | y] -------------------------------------------------------------------------------- /repository/Vivide.package/Date.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Date.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/Date.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Date" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/DateAndTime.extension/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/DateAndTime.extension/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/Debugger.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Debugger" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Dictionary.extension/instance/asList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asList 3 | 4 | ^ Array with: self -------------------------------------------------------------------------------- /repository/Vivide.package/Dictionary.extension/instance/isList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isList 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/Dictionary.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Dictionary" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Form.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Form.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/Form.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Form" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/HandMorph.extension/instance/drag..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/HandMorph.extension/instance/drag..st -------------------------------------------------------------------------------- /repository/Vivide.package/HandMorph.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "HandMorph" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/HashedCollection.extension/instance/asList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asList 3 | "Ensure enumerability. " 4 | ^ self asArray -------------------------------------------------------------------------------- /repository/Vivide.package/HashedCollection.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "HashedCollection" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Integer.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Integer" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/MCVersion.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MCVersion" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/MessageTally.extension/instance/do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/MessageTally.extension/instance/do..st -------------------------------------------------------------------------------- /repository/Vivide.package/MessageTally.extension/instance/size.st: -------------------------------------------------------------------------------- 1 | *vivide-artifacts-support 2 | size 3 | 4 | ^ self count: [:ea | true] -------------------------------------------------------------------------------- /repository/Vivide.package/MessageTally.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MessageTally" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/MethodReference.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MethodReference" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/edgeCell..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/edgeCell..st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/edgeCell.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/edgeCell.st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/edgeSide..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/edgeSide..st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/edgeSide.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/edgeSide.st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/gridCell..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/gridCell..st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/gridCell.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/gridCell.st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/gridSpan..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/gridSpan..st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/gridSpan.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/gridSpan.st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/ide.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/ide.st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/isOverlayConnector.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isOverlayConnector 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/isPane.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isPane 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/isPaneView.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isPaneView 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/showFlash.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/showFlash.st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/instance/shrinkWrap.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/instance/shrinkWrap.st -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Morph.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/Morph.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Morph" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/MouseButtonEvent.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MouseButtonEvent" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/asList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asList 3 | 4 | ^ Array with: self -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/asScript.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asScript 3 | 4 | self subclassResponsibility. -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/drag.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | drag 3 | 4 | Project current world firstHand drag: self. -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/isList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isList 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/isScript.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isScript 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/isScriptDefinition.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isScriptDefinition 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/open.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Object.extension/instance/open.st -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/retain.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Object.extension/instance/retain.st -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/instance/wrapList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | wrapList 3 | 4 | ^ {self} -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Object.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/Object.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Object" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/PackageInfo.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "PackageInfo" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/PasteUpMorph.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "PasteUpMorph" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Point.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/Point.extension/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/Point.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Point" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/SequenceableCollection.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SequenceableCollection" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/String.extension/instance/asList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asList 3 | 4 | ^ Array with: self -------------------------------------------------------------------------------- /repository/Vivide.package/String.extension/instance/asScript.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/String.extension/instance/asScript.st -------------------------------------------------------------------------------- /repository/Vivide.package/String.extension/instance/isList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isList 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/String.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "String" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Symbol.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Symbol" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/SystemNavigation.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SystemNavigation" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/TViDrawFlags.trait/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/TViDrawFlags.trait/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/TViDrawFlags.trait/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/TViMemento.trait/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/TViMemento.trait/instance/aboutToClose.st: -------------------------------------------------------------------------------- 1 | memento - cleanup 2 | aboutToClose 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/TViMemento.trait/instance/clear.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/TViMemento.trait/instance/clear.st -------------------------------------------------------------------------------- /repository/Vivide.package/TViMemento.trait/instance/close.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/TViMemento.trait/instance/close.st -------------------------------------------------------------------------------- /repository/Vivide.package/TViMemento.trait/instance/closed.st: -------------------------------------------------------------------------------- 1 | memento - cleanup 2 | closed 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/TViMemento.trait/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/TViMemento.trait/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectNotifier.trait/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectNotifier.trait/instance/filter.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | filter 3 | 4 | ^ [:object :event | true] -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectNotifier.trait/instance/subscribe.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | subscribe -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectNotifier.trait/instance/unsubscribe.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | unsubscribe -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/instance/acceptChanges.st: -------------------------------------------------------------------------------- 1 | memento 2 | acceptChanges -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/instance/clear.st: -------------------------------------------------------------------------------- 1 | initialization 2 | clear -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/instance/hasUnacceptedChanges.st: -------------------------------------------------------------------------------- 1 | memento 2 | hasUnacceptedChanges 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/instance/optimalHeight.st: -------------------------------------------------------------------------------- 1 | geometry 2 | optimalHeight 3 | 4 | ^ 300 -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/instance/optimalWidth.st: -------------------------------------------------------------------------------- 1 | geometry 2 | optimalWidth 3 | 4 | ^ 500 -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/instance/process..st: -------------------------------------------------------------------------------- 1 | updating 2 | process: model -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/instance/setUp..st: -------------------------------------------------------------------------------- 1 | initialization 2 | setUp: script -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectView.trait/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/TViObjectView.trait/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectViewReset.trait/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectViewReset.trait/instance/reset.st: -------------------------------------------------------------------------------- 1 | updating 2 | reset -------------------------------------------------------------------------------- /repository/Vivide.package/TViObjectViewSupport.trait/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/TViOverlayMessages.trait/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/TViOverlayMessages.trait/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/TViPaneDecoration.trait/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/TViPaneDecoration.trait/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/TViPaneDecoration.trait/instance/hasRolloverBorder.st: -------------------------------------------------------------------------------- 1 | drawing 2 | hasRolloverBorder 3 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/TViPaneDecoration.trait/instance/wantsHaloFromClick.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | wantsHaloFromClick 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/TestCase.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TestCase" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/Text.extension/instance/asList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asList 3 | 4 | ^ Array with: self -------------------------------------------------------------------------------- /repository/Vivide.package/Text.extension/instance/isList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | isList 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/Text.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Text" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/TransferMorph.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TransferMorph" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/UUID.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "UUID" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/UndefinedObject.extension/instance/asList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | asList 3 | 4 | ^ #() -------------------------------------------------------------------------------- /repository/Vivide.package/UndefinedObject.extension/instance/wrapList.st: -------------------------------------------------------------------------------- 1 | *vivide 2 | wrapList 3 | 4 | ^ #() -------------------------------------------------------------------------------- /repository/Vivide.package/UndefinedObject.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "UndefinedObject" } 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViActiveProfile.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViActiveProfile.class/class/default.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | default 3 | 4 | ^ VivideLight active ifNotNil: #profile -------------------------------------------------------------------------------- /repository/Vivide.package/ViActiveScriptNotifier.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViActiveScriptOrganizer.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViActiveScriptOrganizer.class/class/default.st: -------------------------------------------------------------------------------- 1 | instances 2 | default 3 | 4 | ^ ViProfile active ifNotNil: #organization -------------------------------------------------------------------------------- /repository/Vivide.package/ViActiveVivide.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViActiveVivide.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViActiveVivide.class/class/world.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViActiveVivide.class/class/world.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViActivityChart.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViActivityChart.class/instance/graph.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | graph 3 | 4 | ^ self submorphs last -------------------------------------------------------------------------------- /repository/Vivide.package/ViActivityChart.class/instance/numberOfPoints.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | numberOfPoints 3 | 4 | ^ 60 -------------------------------------------------------------------------------- /repository/Vivide.package/ViAnimatedImageMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViArgumentsCollected.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViArtifactContainer.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/class/artifactName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | artifactName 3 | 4 | self subclassResponsibility. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/aboutToClose.st: -------------------------------------------------------------------------------- 1 | memento - cleanup 2 | aboutToClose 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/artifactChanged..st: -------------------------------------------------------------------------------- 1 | signals 2 | artifactChanged: aMorph 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/artifactRequested..st: -------------------------------------------------------------------------------- 1 | signals 2 | artifactRequested: anObject 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/closed.st: -------------------------------------------------------------------------------- 1 | memento - cleanup 2 | closed 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/collapsed.st: -------------------------------------------------------------------------------- 1 | signals 2 | collapsed 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/context.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | context -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/contextRequested..st: -------------------------------------------------------------------------------- 1 | signals 2 | contextRequested: anObject 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/defaultWidth.st: -------------------------------------------------------------------------------- 1 | geometry 2 | defaultWidth 3 | 4 | ^ 150 -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/expanded.st: -------------------------------------------------------------------------------- 1 | signals 2 | expanded 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/focusChanged..st: -------------------------------------------------------------------------------- 1 | signals 2 | focusChanged: rect 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/informationSent..st: -------------------------------------------------------------------------------- 1 | signals - messages 2 | informationSent: stringOrText 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/isExpanded.st: -------------------------------------------------------------------------------- 1 | geometry - testing 2 | isExpanded 3 | 4 | ^ self isCollapsed not -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/morphsOfInterest.st: -------------------------------------------------------------------------------- 1 | accessing 2 | morphsOfInterest 3 | 4 | ^ {self artifact} -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainer.class/instance/warningSent..st: -------------------------------------------------------------------------------- 1 | signals - messages 2 | warningSent: stringOrText 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainerColumn.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainerColumn.class/instance/artifactContainers.st: -------------------------------------------------------------------------------- 1 | OBSOLETE 2 | artifactContainers 3 | 4 | ^ self submorphs copyWithout: dropShadow -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainerColumn.class/instance/artifactRequested..st: -------------------------------------------------------------------------------- 1 | signals 2 | artifactRequested: anObject 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainerColumn.class/instance/editors.st: -------------------------------------------------------------------------------- 1 | accessing 2 | editors 3 | 4 | ^ self submorphs copyWithout: dropShadow -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainerColumn.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | testing 2 | indicateKeyboardFocus 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainerColumn.class/instance/lastArtifactRemoved.st: -------------------------------------------------------------------------------- 1 | signals 2 | lastArtifactRemoved 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainerColumnLayout.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactContainerLayout.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactListView2.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViArtifactListView2.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactListView2.class/instance/artifactContainerColumn.st: -------------------------------------------------------------------------------- 1 | accessing 2 | artifactContainerColumn 3 | 4 | ^ scrollArea widget -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactListView2.class/instance/artifactRequested..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | artifactRequested: anObject 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactListView2.class/instance/isDoingNonReentrantWork.st: -------------------------------------------------------------------------------- 1 | pane api 2 | isDoingNonReentrantWork 3 | 4 | ^ self hasProperty: #isReadingModel -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactListView2.class/instance/minimalWidth.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | minimalWidth 3 | 4 | ^ 50 -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactListView2.class/instance/objectSelectionChanged..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | objectSelectionChanged: someNodes 3 | 4 | self emitAlways. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactLookupService.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactSummaryMorph.class/README.md: -------------------------------------------------------------------------------- 1 | A support structure for ViArtifactContainer. -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactToolbar.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactToolbar.class/instance/topPanel.st: -------------------------------------------------------------------------------- 1 | accessing 2 | topPanel 3 | 4 | ^ topBar -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactToolbar.class/instance/wantsHaloFromClick.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | wantsHaloFromClick 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactToolbarLayout.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactToolbarPanel.class/instance/hasContent.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasContent 3 | 4 | ^ self submorphs notEmpty -------------------------------------------------------------------------------- /repository/Vivide.package/ViArtifactView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViAsyncError.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViAsyncError.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViAsyncError.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViBarChart.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViBarChart.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indicateKeyboardFocus 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViBarChart.class/instance/setUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViBarChart.class/instance/setUp..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViBarChart.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViBarChart.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViButtonBarView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViButtonBarView.class/instance/clear.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | clear 3 | 4 | self removeAllMorphs. -------------------------------------------------------------------------------- /repository/Vivide.package/ViButtonSpec.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViButtonSpec.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViButtonSpec.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViCallstackModel.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViClassComment.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViClassCommentEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViClassCommentEditor.class/instance/group.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | group 3 | 4 | ^ self theClass name -------------------------------------------------------------------------------- /repository/Vivide.package/ViClassDefinitionEdit.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViClassDefinitionEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViClassDefinitionEditor.class/class/artifactName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | artifactName 3 | 4 | ^ 'Class' -------------------------------------------------------------------------------- /repository/Vivide.package/ViClassDefinitionEditor.class/instance/context.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | context 3 | 4 | ^ self artifact ifNotNil: [:a | a theClass] -------------------------------------------------------------------------------- /repository/Vivide.package/ViClassDefinitionEditorView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViCodeSnippetEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViCodeSnippetEditor.class/instance/bindings.st: -------------------------------------------------------------------------------- 1 | accessing 2 | bindings 3 | 4 | ^ snippetEdit model knownNames -------------------------------------------------------------------------------- /repository/Vivide.package/ViCodeSnippetEditor.class/instance/context.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | context 3 | 4 | ^ snippetEdit model doItReceiver -------------------------------------------------------------------------------- /repository/Vivide.package/ViCodeSnippetEditor.class/instance/group.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | group 3 | 4 | ^ 'Snippets' -------------------------------------------------------------------------------- /repository/Vivide.package/ViColorMapView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViColorMapView.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indicateKeyboardFocus 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViColorService.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViColumn.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViColumn.class/instance/delete.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViColumn.class/instance/delete.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViColumn.class/instance/deleted.st: -------------------------------------------------------------------------------- 1 | signals 2 | deleted 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViColumn.class/instance/editors.st: -------------------------------------------------------------------------------- 1 | accessing 2 | editors 3 | 4 | ^ self submorphs -------------------------------------------------------------------------------- /repository/Vivide.package/ViColumn.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViColumn.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViColumnsView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViColumnsView.class/instance/columns.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | columns 3 | 4 | ^ self widget submorphs -------------------------------------------------------------------------------- /repository/Vivide.package/ViColumnsView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViColumnsView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViCommandsView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViConstraintLayout.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViContactCard.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViContactCard.class/instance/raw.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViContactCard.class/instance/raw.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViContactCard.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViContactCard.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViContextMenu.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViContextMenu.class/instance/yellowButtonActivity..st: -------------------------------------------------------------------------------- 1 | events-processing 2 | yellowButtonActivity: shiftState 3 | 4 | "Ignore." -------------------------------------------------------------------------------- /repository/Vivide.package/ViContextMenu.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViContextMenu.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViContextMenuGroupSpec.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViConverter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViConverter.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViConverter.class/class/default.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViConverter.class/class/default.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViConverter.class/instance/readCommands.st: -------------------------------------------------------------------------------- 1 | read 2 | readCommands 3 | 4 | self subclassResponsibility. -------------------------------------------------------------------------------- /repository/Vivide.package/ViConverter.class/instance/readProfile.st: -------------------------------------------------------------------------------- 1 | read 2 | readProfile 3 | 4 | self subclassResponsibility. -------------------------------------------------------------------------------- /repository/Vivide.package/ViConverter.class/instance/readSteps.st: -------------------------------------------------------------------------------- 1 | read 2 | readSteps 3 | 4 | self subclassResponsibility. -------------------------------------------------------------------------------- /repository/Vivide.package/ViConverter.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViConverter.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViConverterForClipboard.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViDesktopView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViDesktopView.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | morphic - events 2 | indicateKeyboardFocus 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViDesktopView.class/instance/isDoingNonReentrantWork.st: -------------------------------------------------------------------------------- 1 | updating - guards 2 | isDoingNonReentrantWork 3 | 4 | ^ self hasProperty: #isReadingModel -------------------------------------------------------------------------------- /repository/Vivide.package/ViDesktopView.class/instance/isPaneView.st: -------------------------------------------------------------------------------- 1 | testing 2 | isPaneView 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViDesktopView.class/instance/setUp..st: -------------------------------------------------------------------------------- 1 | initialization 2 | setUp: aScript -------------------------------------------------------------------------------- /repository/Vivide.package/ViDesktopView.class/instance/wantsHaloFromClick.st: -------------------------------------------------------------------------------- 1 | morphic - halo 2 | wantsHaloFromClick 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViDesktopView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViDesktopView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViDiffObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViDiffObject.class/instance/acceptObjectService..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | acceptObjectService: srv 3 | 4 | ^ nil -------------------------------------------------------------------------------- /repository/Vivide.package/ViDiffObject.class/instance/asList.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | asList 3 | 4 | ^ self mergeSources -------------------------------------------------------------------------------- /repository/Vivide.package/ViDiffObject.class/instance/hasContentsInExplorer.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | hasContentsInExplorer 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViDiffObject.class/instance/hash.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViDiffObject.class/instance/hash.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViDiffObject.class/instance/in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViDiffObject.class/instance/in..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViDiffObject.class/instance/shouldBePrintedAsLiteralVisiting..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | shouldBePrintedAsLiteralVisiting: aSet 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViDiffObject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViDiffObject.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViDraggableButton.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViDraggableButton.class/class/widgetCategory.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetCategory 3 | 4 | ^ 'Vivide' -------------------------------------------------------------------------------- /repository/Vivide.package/ViDraggableButton.class/class/widgetClassName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetClassName 3 | 4 | ^ 'Draggable Button' -------------------------------------------------------------------------------- /repository/Vivide.package/ViDropTarget.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViDropTarget.class/class/isWidgetClass.st: -------------------------------------------------------------------------------- 1 | designer 2 | isWidgetClass 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViDropTarget.class/class/widgetCategory.st: -------------------------------------------------------------------------------- 1 | designer 2 | widgetCategory 3 | 4 | ^ 'Vivide' -------------------------------------------------------------------------------- /repository/Vivide.package/ViDropTarget.class/instance/areaThicknessLeft.st: -------------------------------------------------------------------------------- 1 | accessing 2 | areaThicknessLeft 3 | 4 | ^ 20 -------------------------------------------------------------------------------- /repository/Vivide.package/ViDropTarget.class/instance/areaThicknessRight.st: -------------------------------------------------------------------------------- 1 | accessing 2 | areaThicknessRight 3 | 4 | ^ 20 -------------------------------------------------------------------------------- /repository/Vivide.package/ViDropTarget.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViDropTarget.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViEclipseIcons.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViEditorView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViEditorView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViEditorView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViEventNotifier.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViEventNotifier.class/instance/trigger.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | trigger 3 | 4 | self notifyEvent: nil. -------------------------------------------------------------------------------- /repository/Vivide.package/ViExceptionHistory.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViExplorerView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViFeedbackReportDialog.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViFeedbackReportDialog.class/instance/open.st: -------------------------------------------------------------------------------- 1 | actions 2 | open 3 | 4 | self notYetImplemented. -------------------------------------------------------------------------------- /repository/Vivide.package/ViFeedbackReportDialog.class/instance/openDebuggers.st: -------------------------------------------------------------------------------- 1 | private 2 | openDebuggers 3 | 4 | ^ #() -------------------------------------------------------------------------------- /repository/Vivide.package/ViFeedbackReportDialog.class/instance/ui.st: -------------------------------------------------------------------------------- 1 | accessing 2 | ui 3 | 4 | ^ ui ifNil: [ui := ViFeedbackReportDialogUi new] -------------------------------------------------------------------------------- /repository/Vivide.package/ViFeedbackReportDialogUi.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViFeedbackReportGenerator.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViFixedConnection.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViFixedConnection.class/instance/isSelection.st: -------------------------------------------------------------------------------- 1 | testing 2 | isSelection 3 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViFixedConnection.class/instance/mustBeUnique.st: -------------------------------------------------------------------------------- 1 | testing 2 | mustBeUnique 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViFlagComment.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViFlagComment.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViFlagComment.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViFrequentlyUsedHistory.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViGraphAxis.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViGraphAxis.class/instance/fontToUse.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | fontToUse 3 | ^ TextStyle defaultFont -------------------------------------------------------------------------------- /repository/Vivide.package/ViGraphAxis.class/instance/label.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViGraphAxis.class/instance/label.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViGraphAxis.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViGraphAxis.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViGroupedToolbar.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViGroupedToolbar.class/instance/hasContent.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasContent 3 | 4 | ^ self groups notEmpty -------------------------------------------------------------------------------- /repository/Vivide.package/ViGroupedToolbar.class/instance/queryListModel.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | queryListModel 3 | 4 | ^ self groups last value -------------------------------------------------------------------------------- /repository/Vivide.package/ViGroupedToolbarModel.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViGroupedToolbarModel.class/instance/childCount.st: -------------------------------------------------------------------------------- 1 | item model - hierarchy 2 | childCount 3 | 4 | ^ self objects size -------------------------------------------------------------------------------- /repository/Vivide.package/ViHaloLayout.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHaloLayout.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViHaloLayout.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHaloLayout.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/class/about.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHelp.class/class/about.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/class/aboutContents.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHelp.class/class/aboutContents.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/class/bookName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | bookName 3 | 4 | ^ 'Vivide' -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/class/icon.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHelp.class/class/icon.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/class/knownBugs.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHelp.class/class/knownBugs.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/class/pages.st: -------------------------------------------------------------------------------- 1 | accessing 2 | pages 3 | 4 | ^ #(readme knownBugs keyboardShortcuts about) -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/class/readme.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHelp.class/class/readme.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHelp.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelp.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHelp.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelpTopic.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViHelpTopic.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViHelpTopic.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViIconService.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViIconService.class/class/blank.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIconService.class/class/blank.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIconService.class/class/flag.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIconService.class/class/flag.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIconService.class/class/icons.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIconService.class/class/icons.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIconService.class/class/morph.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIconService.class/class/morph.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIconService.class/class/string.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIconService.class/class/string.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIconService.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIconService.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViIconServiceForEclipse.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/class/blankIcon.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/class/blankIcon.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/class/blueFlagIcon.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/class/blueFlagIcon.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/class/cachePrefix.st: -------------------------------------------------------------------------------- 1 | caching 2 | cachePrefix 3 | 4 | ^ 'vi' -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/class/circle..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/class/circle..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/class/dragIcon.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/class/dragIcon.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/class/license.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/class/license.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/class/redFlagIcon.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/class/redFlagIcon.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/class/vivideLogo.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/class/vivideLogo.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViIcons.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViIcons.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViImageView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViImageView.class/instance/zoomFit.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | zoomFit 3 | 4 | self scroller transformMorph scale: 1.0. -------------------------------------------------------------------------------- /repository/Vivide.package/ViImageView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViImageView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViInputField.class/README.md: -------------------------------------------------------------------------------- 1 | Operates directly on text. -------------------------------------------------------------------------------- /repository/Vivide.package/ViInputField.class/instance/lineEdit.st: -------------------------------------------------------------------------------- 1 | accessing 2 | lineEdit 3 | 4 | ^ self submorphs first -------------------------------------------------------------------------------- /repository/Vivide.package/ViInputField.class/instance/textEdit.st: -------------------------------------------------------------------------------- 1 | accessing 2 | textEdit 3 | 4 | ^ self submorphs first -------------------------------------------------------------------------------- /repository/Vivide.package/ViInputField.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViInputField.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViItemViewButtonColumnSpec.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLabelService.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLabelService.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViLabelServiceForEclipse.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyForm.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyForm.class/class/init..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLazyForm.class/class/init..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyForm.class/instance/extent.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLazyForm.class/instance/extent.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyForm.class/instance/height.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLazyForm.class/instance/height.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyForm.class/instance/scaledToDisplay.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | scaledToDisplay 3 | 4 | shouldScale := true. -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyForm.class/instance/value.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLazyForm.class/instance/value.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyForm.class/instance/width.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLazyForm.class/instance/width.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyForm.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLazyForm.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyImageMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLazyImageMorph.class/instance/extent..st: -------------------------------------------------------------------------------- 1 | accessing-geometry 2 | extent: aPoint 3 | "Skip. Use #form:." -------------------------------------------------------------------------------- /repository/Vivide.package/ViLineEdit.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLineEdit.class/instance/setUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLineEdit.class/instance/setUp..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLineEdit.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLineEdit.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViLineOfCode.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLineOfCode.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLineOfCode.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViListView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViListView.class/instance/setUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViListView.class/instance/setUp..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViListView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViListView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocator.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocator.class/class/widgetCategory.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetCategory 3 | 4 | ^ #Vivide -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocator.class/class/widgetClassName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetClassName 3 | 4 | ^ 'Locator' -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocator.class/instance/artifactRequested..st: -------------------------------------------------------------------------------- 1 | signals 2 | artifactRequested: anObject 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocator.class/instance/drawOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLocator.class/instance/drawOn..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocator.class/instance/vivide..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLocator.class/instance/vivide..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocator.class/instance/vivide.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLocator.class/instance/vivide.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocator.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViLocator.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocatorOperation.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocatorResultListDecorator.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLocatorResultListDecorator.class/instance/yellowButtonActivity..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | yellowButtonActivity: shiftState 3 | "Ignore." -------------------------------------------------------------------------------- /repository/Vivide.package/ViLoggingService.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViLoggingService.class/class/database.st: -------------------------------------------------------------------------------- 1 | default instance 2 | database 3 | 4 | ^ 'vivide' -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEdit.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEdit.class/instance/compile.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | compile 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEdit.class/instance/parse.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | parse 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEdit.class/instance/styler.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | styler 3 | ^ nil -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEdit.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMemoEdit.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEditor.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMemoEditor.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEditor.class/class/artifactName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | artifactName 3 | 4 | ^ 'Memo' -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEditor.class/instance/defaultMemo.st: -------------------------------------------------------------------------------- 1 | accessing 2 | defaultMemo 3 | 4 | ^ ' 5 | Type text here... 6 | ' asHtmlText -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEditor.class/instance/group.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | group 3 | 4 | ^ nil " 'Memos'" -------------------------------------------------------------------------------- /repository/Vivide.package/ViMemoEditor.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMemoEditor.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViMessageTally.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodContextEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodContextEditor.class/class/supportedTypes.st: -------------------------------------------------------------------------------- 1 | accessing 2 | supportedTypes 3 | 4 | ^ {Context} -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodContextEditor.class/instance/isAffectedBy..st: -------------------------------------------------------------------------------- 1 | system changes 2 | isAffectedBy: anObject 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodContextEditor.class/instance/isValid.st: -------------------------------------------------------------------------------- 1 | testing 2 | isValid 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodContextEditorView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodDropTarget.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodEditor.class/class/artifactName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | artifactName 3 | 4 | ^ 'Method' -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodEditor.class/instance/bindings.st: -------------------------------------------------------------------------------- 1 | accessing 2 | bindings 3 | 4 | ^ self artifact model knownNames -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodEditor.class/instance/context.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | context 3 | 4 | ^ self theClass -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodEditor.class/instance/sendersRequested..st: -------------------------------------------------------------------------------- 1 | system navigation 2 | sendersRequested: aSelector 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodEditorView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodSourceCodeEdit.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodSourceCodeEdit.class/class/widgetClassName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetClassName 3 | 4 | ^ 'Method Source Edit' -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodVersion.class/README.md: -------------------------------------------------------------------------------- 1 | Based on OB-Standard-lr.458 (OmniBrowser). -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodVersion.class/instance/date.st: -------------------------------------------------------------------------------- 1 | accessing 2 | date 3 | 4 | ^ self timeStamp date -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodVersionEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMethodVersionEditor.class/instance/hasUnacceptedChanges.st: -------------------------------------------------------------------------------- 1 | memento - data 2 | hasUnacceptedChanges 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViModelNode.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViModelNode.class/instance/depth.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViModelNode.class/instance/depth.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViModelNode.class/instance/groups.st: -------------------------------------------------------------------------------- 1 | item model - hierarchy 2 | groups 3 | 4 | ^ {self defaultGroup} -------------------------------------------------------------------------------- /repository/Vivide.package/ViModelNode.class/instance/hash.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViModelNode.class/instance/hash.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViModelNode.class/instance/pane..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViModelNode.class/instance/pane..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViModelNode.class/instance/pane.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViModelNode.class/instance/pane.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViModelNode.class/instance/reset.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViModelNode.class/instance/reset.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViModelNode.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViModelNode.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorph.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMorph.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorph.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMorph.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorph.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMorph.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphDecorator.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphService.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/instance/clear.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | clear 3 | self removeAllMorphs. -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/instance/handlesMouseMove..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | handlesMouseMove: evt 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/instance/handlesMouseOver..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | handlesMouseOver: evt 3 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indicateKeyboardFocus 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/instance/model.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMorphView.class/instance/model.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/instance/reset.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMorphView.class/instance/reset.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/instance/wantsHaloFromClick.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | wantsHaloFromClick 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViMorphView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViMorphView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViNotificationToolButton.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViNotificationToolButton.class/class/widgetCategory.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetCategory 3 | 4 | ^ #Vivide -------------------------------------------------------------------------------- /repository/Vivide.package/ViNotificationToolButton.class/class/widgetClassName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetClassName 3 | 4 | ^ 'Notification Button' -------------------------------------------------------------------------------- /repository/Vivide.package/ViNotificationToolButton.class/instance/clear.st: -------------------------------------------------------------------------------- 1 | notifications 2 | clear 3 | 4 | self setIcon: nil. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectChangeNotifier.class/instance/isBroadcasting.st: -------------------------------------------------------------------------------- 1 | public 2 | isBroadcasting 3 | 4 | ^ silenceLevel = 0 -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectChangeNotifier.class/instance/setBroadcasting.st: -------------------------------------------------------------------------------- 1 | private 2 | setBroadcasting 3 | silenceLevel := 0. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectEditor.class/instance/editVisibilityBtn.st: -------------------------------------------------------------------------------- 1 | accessing - ui 2 | editVisibilityBtn 3 | 4 | ^ self resizeHandle submorphs second -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectEditor.class/instance/sourceCodeEdit.st: -------------------------------------------------------------------------------- 1 | accessing - ui 2 | sourceCodeEdit 3 | 4 | ^ self artifact submorphs second -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectEditor.class/instance/turnOffAutoRefresh.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | turnOffAutoRefresh 3 | 4 | self stopSteppingSelector: #clear. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectEditorModel.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectEditorModel.class/instance/base.st: -------------------------------------------------------------------------------- 1 | accessing - private 2 | base 3 | 4 | ^ wrappedObject -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectEditorModel.class/instance/wrappedObject.st: -------------------------------------------------------------------------------- 1 | accessing 2 | wrappedObject 3 | 4 | ^ self base -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectEditorModelForStateChanges.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGate.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGate.class/instance/connectionEstablished.st: -------------------------------------------------------------------------------- 1 | signals 2 | connectionEstablished 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGate.class/instance/connectionLost.st: -------------------------------------------------------------------------------- 1 | signals 2 | connectionLost 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGate.class/instance/connectionTimedOut.st: -------------------------------------------------------------------------------- 1 | signals 2 | connectionTimedOut 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGate.class/instance/disconnect.st: -------------------------------------------------------------------------------- 1 | actions 2 | disconnect 3 | 4 | self stopDataProcesses. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGate.class/instance/port.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViObjectGate.class/instance/port.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGate.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViObjectGate.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGateEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGateEditor.class/instance/hasUnacceptedChanges.st: -------------------------------------------------------------------------------- 1 | memento - data 2 | hasUnacceptedChanges 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectGateEditorUi.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectHistory.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectHistory.class/instance/clear.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | clear 3 | 4 | objects := nil. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectHistory.class/instance/isEmpty.st: -------------------------------------------------------------------------------- 1 | testing 2 | isEmpty 3 | 4 | ^ self size == 0 -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectHistory.class/instance/limitChanged.st: -------------------------------------------------------------------------------- 1 | signals 2 | limitChanged 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectHistory.class/instance/size.st: -------------------------------------------------------------------------------- 1 | accessing 2 | size 3 | 4 | ^ self objects size -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectHistoryNotifier.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectOriginServiceForEclipse.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectPreviewHandler.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectService.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViObjectService.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectService.class/instance/doString..st: -------------------------------------------------------------------------------- 1 | squeak - collections 2 | doString: anObject 3 | 4 | ^ nil -------------------------------------------------------------------------------- /repository/Vivide.package/ViObjectStateChange.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViOperationToolbar.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViOverlappingLayout.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViOverlayConnector.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViOverlayConnector.class/instance/isOverlayConnector.st: -------------------------------------------------------------------------------- 1 | testing 2 | isOverlayConnector 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViOverlayConnector.class/instance/rejectsEvent..st: -------------------------------------------------------------------------------- 1 | event handling 2 | rejectsEvent: evt 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViOverlayMessageBox.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViOverlayMessageBox.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indicateKeyboardFocus 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViOverlayMessageBoxUi.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/activate.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/activate.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/activated.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/activated.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/addHalo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/addHalo..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/addHalo.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/addHalo.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/addScript.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/addScript.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/allResults.st: -------------------------------------------------------------------------------- 1 | accessing - view 2 | allResults 3 | 4 | ^ self model allObjects -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/attach..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/attach..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/baseClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/baseClass.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/canUpdate..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/canUpdate..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/clear.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/clear.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/clearError.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/clearError.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/copyScript.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/copyScript.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/copyTool.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/copyTool.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/decoration.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/decoration.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/detach..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/detach..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/drawOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/drawOn..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/editScript.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/editScript.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/flash.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/flash.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/haloClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/haloClass.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/handlesMouseDown..st: -------------------------------------------------------------------------------- 1 | activation and focus 2 | handlesMouseDown: evt 3 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/id..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/id..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/id.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/id.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/initialize.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/isPane.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | isPane 3 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/model..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/model..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/model.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/model.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/mouseDown..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/mouseDown..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/objects..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/objects..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/objects.st: -------------------------------------------------------------------------------- 1 | accessing - kernel 2 | objects 3 | 4 | ^ self model inputForChildren -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/open.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/open.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/popUpAt..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/popUpAt..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/results.st: -------------------------------------------------------------------------------- 1 | accessing - view 2 | results 3 | 4 | ^ self model objects -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/script..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/script..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/script.st: -------------------------------------------------------------------------------- 1 | accessing - kernel 2 | script 3 | 4 | ^ self model firstStep -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/showError..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/showError..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/startDrag..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/startDrag..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/tryClose.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/tryClose.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/tupleSize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/tupleSize.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/updateView.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/updateView.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/view..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/view..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/instance/view.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/instance/view.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/methodProperties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViPane.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPane.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneConnection.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneConnection.class/instance/isResults.st: -------------------------------------------------------------------------------- 1 | testing 2 | isResults 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneConnection.class/instance/isSelection.st: -------------------------------------------------------------------------------- 1 | testing 2 | isSelection 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneConnection.class/instance/objects.st: -------------------------------------------------------------------------------- 1 | notification 2 | objects 3 | 4 | self subclassResponsibility. -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneConnectionMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneConnectionMorph.class/instance/grid.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | grid 3 | 4 | ^ 30@30 -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneDecorationGhost.class/README.md: -------------------------------------------------------------------------------- 1 | Null object for pane decorations. Eats all messages. -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneDecorationGhost.class/instance/doesNotUnderstand..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | doesNotUnderstand: message 3 | ^ self -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneDecorationLookup.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneHaloMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneHaloMorph.class/instance/handleSize.st: -------------------------------------------------------------------------------- 1 | accessing 2 | handleSize 3 | 4 | ^ 20 -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneHaloMorph.class/instance/wantsYellowButtonMenu.st: -------------------------------------------------------------------------------- 1 | menu 2 | wantsYellowButtonMenu 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneHighlight.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneHighlight.class/class/on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViPaneHighlight.class/class/on..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneHighlight.class/instance/rejectsEvent..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rejectsEvent: evt 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneHighlight.class/instance/wantsHaloFromClick.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | wantsHaloFromClick 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneListView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneListView.class/instance/lastUpdateId.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | lastUpdateId 3 | ^ nil "not needed" -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneListView.class/instance/panes.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | panes 3 | ^ self content submorphs -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneListView.class/instance/script.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | script 3 | 4 | ^ self model "root" firstStep -------------------------------------------------------------------------------- /repository/Vivide.package/ViPaneListView.class/instance/wantsHaloFromClick.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | wantsHaloFromClick 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViParser.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViParser.class/instance/resolve..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViParser.class/instance/resolve..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViParser.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViParser.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViParserHelper.class/README.md: -------------------------------------------------------------------------------- 1 | Used for notification of default parser. -------------------------------------------------------------------------------- /repository/Vivide.package/ViParserHelper.class/instance/deselect.st: -------------------------------------------------------------------------------- 1 | interactive error handling 2 | deselect -------------------------------------------------------------------------------- /repository/Vivide.package/ViParserHelper.class/instance/select.st: -------------------------------------------------------------------------------- 1 | interactive error handling 2 | select 3 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableButtonBarMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableButtonBarMorph.class/instance/clear.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | clear 3 | self removeAllMorphs. -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableListMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableListMorph.class/instance/arrowKey.from..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | arrowKey: character from: morph 3 | 4 | "Ignore." -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableListMorph.class/instance/optimalHeight.st: -------------------------------------------------------------------------------- 1 | geometry 2 | optimalHeight 3 | ^ self morph extentToFit y min: 250 -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableListMorph.class/instance/optimalWidth.st: -------------------------------------------------------------------------------- 1 | geometry 2 | optimalWidth 3 | ^ self morph extentToFit x min: 250 -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableTextMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableTextMorph.class/instance/textMorph.st: -------------------------------------------------------------------------------- 1 | accessing 2 | textMorph 3 | 4 | ^ self submorphs first -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableTreeMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableTreeMorph.class/instance/dragTypeFor..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | dragTypeFor: node 3 | 4 | ^ #objects -------------------------------------------------------------------------------- /repository/Vivide.package/ViPluggableTreeMorph.class/instance/treeMorph.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | treeMorph 3 | 4 | ^ self submorphs first -------------------------------------------------------------------------------- /repository/Vivide.package/ViPolyMetricTreeItem.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPolyMetricTreeItem.class/instance/itemMorph.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | itemMorph 3 | 4 | ^ self submorphs first -------------------------------------------------------------------------------- /repository/Vivide.package/ViPolyMetricTreeView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViPolyMetricTreeView.class/instance/reset.st: -------------------------------------------------------------------------------- 1 | updating 2 | reset 3 | 4 | self process: root. -------------------------------------------------------------------------------- /repository/Vivide.package/ViProcessEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViProcessEditor.class/class/supportedTypes.st: -------------------------------------------------------------------------------- 1 | accessing 2 | supportedTypes 3 | 4 | ^ {Process} -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/class/active.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/class/active.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/class/newEmpty.st: -------------------------------------------------------------------------------- 1 | instance creation 2 | newEmpty 3 | 4 | ^ self new -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/class/newFrom..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/class/newFrom..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/class/newMinimal.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/class/newMinimal.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/instance/export.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/instance/export.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/instance/id..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/instance/id..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/instance/id.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/instance/id.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/instance/import.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/instance/import.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/instance/isValid.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/instance/isValid.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/instance/label..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/instance/label..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/instance/label.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/instance/label.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/instance/unregister.st: -------------------------------------------------------------------------------- 1 | initialization 2 | unregister 3 | 4 | VivideLight profiles remove: self ifAbsent: []. -------------------------------------------------------------------------------- /repository/Vivide.package/ViProfile.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProfile.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocol.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocol.class/instance/hash.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProtocol.class/instance/hash.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocol.class/instance/isExtension.st: -------------------------------------------------------------------------------- 1 | testing 2 | isExtension 3 | 4 | ^ self protocolname beginsWith: '*' -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocol.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProtocol.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocolEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocolEditor.class/instance/context.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | context 3 | 4 | ^ self theClass -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocolEditor.class/instance/resetSource.st: -------------------------------------------------------------------------------- 1 | actions 2 | resetSource 3 | 4 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocolEditor.class/instance/ui.st: -------------------------------------------------------------------------------- 1 | accessing 2 | ui 3 | 4 | ^ ui ifNil: [ui := ViProtocolEditorUi new] -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocolEditorUi.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViProtocolEditorView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViProxyObject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViProxyObject.class/class/from..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProxyObject.class/class/from..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProxyObject.class/instance/acceptObjectService..st: -------------------------------------------------------------------------------- 1 | fallback 2 | acceptObjectService: srv 3 | 4 | ^ nil -------------------------------------------------------------------------------- /repository/Vivide.package/ViProxyObject.class/instance/do..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProxyObject.class/instance/do..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProxyObject.class/instance/in..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProxyObject.class/instance/in..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViProxyObject.class/instance/shouldBePrintedAsLiteralVisiting..st: -------------------------------------------------------------------------------- 1 | fallback 2 | shouldBePrintedAsLiteralVisiting: aSet 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViProxyObject.class/instance/species.st: -------------------------------------------------------------------------------- 1 | accessing 2 | species 3 | 4 | ^ self class -------------------------------------------------------------------------------- /repository/Vivide.package/ViProxyObject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViProxyObject.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViQueryCodeBlock.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViQueryCommand.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViQueryCommand.class/instance/commandExecutionChangesObject.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | commandExecutionChangesObject 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViQueryCommand.class/instance/references.st: -------------------------------------------------------------------------------- 1 | organization - accessing 2 | references 3 | 4 | ^ #() -------------------------------------------------------------------------------- /repository/Vivide.package/ViQueryCommandsBar.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViQueryCommandsBar.class/instance/activated..st: -------------------------------------------------------------------------------- 1 | signals 2 | activated: aQueryCommand 3 | 4 | self emitAlways. -------------------------------------------------------------------------------- /repository/Vivide.package/ViQuerySnippetDefinition.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViQuerySnippetDefinition.class/instance/block.st: -------------------------------------------------------------------------------- 1 | accessing 2 | block 3 | ^ nil -------------------------------------------------------------------------------- /repository/Vivide.package/ViQuerySnippetDefinition.class/instance/isSnippetDefinition.st: -------------------------------------------------------------------------------- 1 | testing 2 | isSnippetDefinition 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViQueryTextEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViQueryToolbar.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViQueryToolbar.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViResizeHandle.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViResizeHandle.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViResizeHandle.class/class/isWidgetClass.st: -------------------------------------------------------------------------------- 1 | testing 2 | isWidgetClass 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViResizeHandleForEdit.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViResultsConnection.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViResultsConnection.class/instance/isResults.st: -------------------------------------------------------------------------------- 1 | testing 2 | isResults 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViScatterPlotView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScatterPlotView.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | testing 2 | indicateKeyboardFocus 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptActivation.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptArchive.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptChangeEvent.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViScriptChangeEvent.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptChangeEvent.class/class/changeKind.st: -------------------------------------------------------------------------------- 1 | accessing 2 | changeKind 3 | 4 | ^ #Generic -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptChangeNotifier.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptChangeNotifier.class/instance/isBroadcasting.st: -------------------------------------------------------------------------------- 1 | public 2 | isBroadcasting 3 | 4 | ^ silenceLevel = 0 -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptChangeNotifier.class/instance/setBroadcasting.st: -------------------------------------------------------------------------------- 1 | private 2 | setBroadcasting 3 | silenceLevel := 0. -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptConversionFailed.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptDefinition.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptDefinition.class/instance/isScriptDefinition.st: -------------------------------------------------------------------------------- 1 | testing 2 | isScriptDefinition 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptDefinition.class/instance/isSnippetDefinition.st: -------------------------------------------------------------------------------- 1 | testing 2 | isSnippetDefinition 3 | 4 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEditor.class/instance/addArtifact.st: -------------------------------------------------------------------------------- 1 | actions 2 | addArtifact 3 | 4 | self addStep. -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEditor.class/instance/collapse.st: -------------------------------------------------------------------------------- 1 | geometry - actions 2 | collapse 3 | 4 | "Ignore." -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEditor.class/instance/group.st: -------------------------------------------------------------------------------- 1 | accessing - object 2 | group 3 | 4 | ^ 'Scripts' -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEditor.class/instance/isWizardActive.st: -------------------------------------------------------------------------------- 1 | testing 2 | isWizardActive 3 | 4 | ^ self fullSourceCode isNil -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEditor.class/instance/removeStep.st: -------------------------------------------------------------------------------- 1 | actions 2 | removeStep 3 | 4 | self deleteScript. -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEditorView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEnumerator.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViScriptEnumerator.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptEnumerator.class/instance/objects.st: -------------------------------------------------------------------------------- 1 | accessing - transformation 2 | objects 3 | 4 | ^ #(1) -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptInterpreter.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptInterpreter.class/instance/atEnd.st: -------------------------------------------------------------------------------- 1 | testing 2 | atEnd 3 | 4 | ^ self next isNil -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptInterpreter.class/instance/next.st: -------------------------------------------------------------------------------- 1 | accessing - transformation 2 | next 3 | 4 | ^ step -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptInterpreter.class/instance/prepareAsynchronousExecution.st: -------------------------------------------------------------------------------- 1 | interpreting - background 2 | prepareAsynchronousExecution -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptNotFound.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptNotInterpreted.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptObject.class/README.md: -------------------------------------------------------------------------------- 1 | This is a unit of reuse. -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptObject.class/instance/id.st: -------------------------------------------------------------------------------- 1 | accessing 2 | id 3 | 4 | ^ id -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptObject.class/instance/register.st: -------------------------------------------------------------------------------- 1 | organization 2 | register 3 | 4 | self subclassResponsibility. -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptObject.class/instance/unregister.st: -------------------------------------------------------------------------------- 1 | organization 2 | unregister 3 | 4 | self subclassResponsibility. -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptOrganizer.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptOrganizer.class/instance/synchronizeCaches.st: -------------------------------------------------------------------------------- 1 | maintenance 2 | synchronizeCaches 3 | 4 | self flag: #obsolete. -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptReference.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViScriptStep.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/instance/hasAfterScripts.st: -------------------------------------------------------------------------------- 1 | references 2 | hasAfterScripts 3 | 4 | ^ self after notEmpty -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/instance/hasNext.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasNext 3 | 4 | ^ self next notNil -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/instance/icon.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViScriptStep.class/instance/icon.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/instance/id..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViScriptStep.class/instance/id..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/instance/isObjectTransformation.st: -------------------------------------------------------------------------------- 1 | testing 2 | isObjectTransformation 3 | 4 | ^ self isPropertyExtraction not -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/instance/isScript.st: -------------------------------------------------------------------------------- 1 | testing 2 | isScript 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/instance/next.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViScriptStep.class/instance/next.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/instance/tags.st: -------------------------------------------------------------------------------- 1 | accessing - convenience 2 | tags 3 | 4 | ^ self valueOfProperty: #tags ifAbsent: [#()] -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptStep.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViScriptStep.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptTemplate.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScriptVersion.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScrollPaneView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViScrollPaneView.class/instance/content.st: -------------------------------------------------------------------------------- 1 | accessing 2 | content 3 | 4 | ^ self scroller widget -------------------------------------------------------------------------------- /repository/Vivide.package/ViScrollPaneView.class/instance/scroller.st: -------------------------------------------------------------------------------- 1 | accessing 2 | scroller 3 | 4 | ^ self submorphs first -------------------------------------------------------------------------------- /repository/Vivide.package/ViScrollPaneView.class/instance/toolbar.st: -------------------------------------------------------------------------------- 1 | accessing 2 | toolbar 3 | 4 | ^ self submorphs last -------------------------------------------------------------------------------- /repository/Vivide.package/ViScrollPaneView.class/instance/zoomFactor.st: -------------------------------------------------------------------------------- 1 | zooming 2 | zoomFactor 3 | 4 | ^ 1.2 -------------------------------------------------------------------------------- /repository/Vivide.package/ViSelectionConnection.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSelectionConnection.class/instance/isSelection.st: -------------------------------------------------------------------------------- 1 | testing 2 | isSelection 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViSeparator.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSeparator.class/class/for..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViSeparator.class/class/for..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViSeparator.class/instance/label.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViSeparator.class/instance/label.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViSeparator.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViSeparator.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViShadow.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViShadow.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViShadow.class/instance/codeSnippetRequested.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | codeSnippetRequested 3 | 4 | self emitAlways. -------------------------------------------------------------------------------- /repository/Vivide.package/ViShadow.class/instance/drawOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViShadow.class/instance/drawOn..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViShadow.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | testing 2 | indicateKeyboardFocus 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViShadow.class/instance/text..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViShadow.class/instance/text..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViShadow.class/instance/text.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViShadow.class/instance/text.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViShadow.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViShadow.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViShallowContext.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViShallowDebugger.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViShallowDebugger.class/instance/fullyExpandStack.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | fullyExpandStack -------------------------------------------------------------------------------- /repository/Vivide.package/ViShallowDebugger.class/instance/pcRange.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | pcRange 3 | 4 | ^ 1 to: 0 -------------------------------------------------------------------------------- /repository/Vivide.package/ViShallowException.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSimpleTreeNode.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSimpleTreeNode.class/instance/children.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | children 3 | 4 | ^ self associations -------------------------------------------------------------------------------- /repository/Vivide.package/ViSimpleTreeNode.class/instance/sizeAll.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | sizeAll 3 | 4 | ^ self count: [:ea | true] -------------------------------------------------------------------------------- /repository/Vivide.package/ViSketchView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSketchView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViSketchView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViSliderView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSliderView.class/instance/labelsBox.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | labelsBox 3 | 4 | ^ self submorphs second -------------------------------------------------------------------------------- /repository/Vivide.package/ViSliderView.class/instance/slider.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | slider 3 | 4 | ^ self submorphs first -------------------------------------------------------------------------------- /repository/Vivide.package/ViSliderView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViSliderView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViSmalltalkHub.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSmalltalkHub.class/class/get..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViSmalltalkHub.class/class/get..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViSmalltalkHub.class/class/reset.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | reset 3 | 4 | Default := nil. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSmalltalkHub.class/class/url.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | url 3 | 4 | ^ 'http://smalltalkhub.com/hub' -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViSourceCodeEdit.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/class/isWidgetClass.st: -------------------------------------------------------------------------------- 1 | testing 2 | isWidgetClass 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/class/widgetCategory.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetCategory 3 | 4 | ^ 'Vivide' -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/class/widgetClassName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetClassName 3 | 4 | ^ 'Source Code Edit' -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/instance/artifactRequested..st: -------------------------------------------------------------------------------- 1 | signals 2 | artifactRequested: anObject 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/instance/focusChanged..st: -------------------------------------------------------------------------------- 1 | signals 2 | focusChanged: aGlobalRectangle 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/instance/informationSent..st: -------------------------------------------------------------------------------- 1 | signals 2 | informationSent: stringOrText 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/instance/newArtifactRequested.st: -------------------------------------------------------------------------------- 1 | signals 2 | newArtifactRequested 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/instance/sourceCode.st: -------------------------------------------------------------------------------- 1 | accessing 2 | sourceCode 3 | 4 | ^ self theText -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEdit.class/instance/warningSent..st: -------------------------------------------------------------------------------- 1 | signals 2 | warningSent: stringOrText 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeEditor.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeLineEdit.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeLineEdit.class/class/widgetCategory.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetCategory 3 | 4 | ^ #Vivide -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeLineEdit.class/class/widgetClassName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | widgetClassName 3 | 4 | ^ 'Code Line Edit' -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeModel.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViSourceCodeModel.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeModel.class/instance/guessTypeForName..st: -------------------------------------------------------------------------------- 1 | completion 2 | guessTypeForName: aString 3 | 4 | ^ nil -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeParagraph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeSnippet.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeSnippet.class/instance/contents.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | contents 3 | ^ self code -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeTextMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeTextMorph.class/instance/explorerRequested..st: -------------------------------------------------------------------------------- 1 | signals 2 | explorerRequested: anObject 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeTextMorph.class/instance/expressionEvaluated..st: -------------------------------------------------------------------------------- 1 | signals 2 | expressionEvaluated: result 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeTextMorph.class/instance/implementorsRequested..st: -------------------------------------------------------------------------------- 1 | signals 2 | implementorsRequested: aSelector 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeTextMorph.class/instance/repeatedReturnPressed..st: -------------------------------------------------------------------------------- 1 | signals 2 | repeatedReturnPressed: count 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSourceCodeTextMorph.class/instance/sendersRequested..st: -------------------------------------------------------------------------------- 1 | signals 2 | sendersRequested: aSelector 3 | 4 | self emitInOwnerChain. -------------------------------------------------------------------------------- /repository/Vivide.package/ViSqueakChangeUpdateNotifier.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSqueakListView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSqueakObjectEventNotifier.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSqueakSystemChangeNotifier.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSqueakTextView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViSqueakTextView.class/instance/text..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | text: newText 3 | 4 | "Ignore." -------------------------------------------------------------------------------- /repository/Vivide.package/ViStackWatcher.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViStackWatcher.class/class/firstCall.st: -------------------------------------------------------------------------------- 1 | example 2 | firstCall 3 | 4 | self secondCall. -------------------------------------------------------------------------------- /repository/Vivide.package/ViStackWatcher.class/class/thirdCall.st: -------------------------------------------------------------------------------- 1 | example 2 | thirdCall 3 | 4 | self firstCall. -------------------------------------------------------------------------------- /repository/Vivide.package/ViStackWatcher.class/instance/endlessRecursionDetected.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | endlessRecursionDetected 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViStampedHistory.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViStandardItemView.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViStandardItemView.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViStandardItemView.class/class/newList.st: -------------------------------------------------------------------------------- 1 | instanceCreation 2 | newList 3 | 4 | ^ self new initializeForView: #list -------------------------------------------------------------------------------- /repository/Vivide.package/ViStandardItemView.class/class/newTree.st: -------------------------------------------------------------------------------- 1 | instanceCreation 2 | newTree 3 | 4 | ^ self new initializeForView: #tree -------------------------------------------------------------------------------- /repository/Vivide.package/ViTableView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTableView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTableView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTestFeedbackMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTestFeedbackMorph.class/instance/wantsHaloFromClick.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | wantsHaloFromClick 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViTexContentNode.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTexDocumentNode.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTexDocumentNode.class/instance/children.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | children 3 | 4 | ^ #() -------------------------------------------------------------------------------- /repository/Vivide.package/ViTexProject.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTexProject.class/class/on..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTexProject.class/class/on..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTexProject.class/instance/label.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | label 3 | ^ entry fullName -------------------------------------------------------------------------------- /repository/Vivide.package/ViTexProject.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTexProject.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextEdit.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextEdit.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextEdit.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextStyler.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextStyler.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextStyler.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextStyler.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextStylerForClass.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/clear.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextView.class/instance/clear.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/doubleClicked..st: -------------------------------------------------------------------------------- 1 | signals 2 | doubleClicked: object 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/flash.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextView.class/instance/flash.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/hovered..st: -------------------------------------------------------------------------------- 1 | signals 2 | hovered: object 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/model.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextView.class/instance/model.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/reset.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextView.class/instance/reset.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/returnPressed..st: -------------------------------------------------------------------------------- 1 | signals 2 | returnPressed: object 3 | 4 | self emit. -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/script.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | script 3 | 4 | ^ self model firstStep -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/setUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextView.class/instance/setUp..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/specs..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextView.class/instance/specs..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/instance/specs.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextView.class/instance/specs.st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTextView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTextViewSpec.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViThumbnailCache.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTilePlainView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTileView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTileView.class/instance/setUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTileView.class/instance/setUp..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTileView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTileView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTimedNotifier.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTimedNotifier.class/instance/unsubscribe.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | unsubscribe 3 | 4 | self shouldSignal: false. -------------------------------------------------------------------------------- /repository/Vivide.package/ViToolSet.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViToolSet.class/class/explore..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViToolSet.class/class/explore..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViToolSet.class/class/inspect..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViToolSet.class/class/inspect..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViToolSet.class/class/methodNullCategory.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | methodNullCategory 3 | 4 | ^ #none -------------------------------------------------------------------------------- /repository/Vivide.package/ViToolSet.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViToolSet.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTopicManager.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTopicManager.class/class/reset.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | reset 3 | 4 | instance := nil. -------------------------------------------------------------------------------- /repository/Vivide.package/ViTranscriptHistory.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTransferMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTransferMorph.class/instance/noteNewOwner..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | noteNewOwner: aMorph 3 | 4 | self addAlarm: #showHelp after: 3000. -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeMapItemMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeMapItemMorph.class/instance/preferredCornerRadius.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | preferredCornerRadius 3 | 4 | ^ 12 -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeMapLayout.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTreeMapLayout.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeMapView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeMapView.class/instance/indicateKeyboardFocus.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indicateKeyboardFocus 3 | ^ false -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeMapView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTreeMapView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeMapVoronoiView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreePlainView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeView.class/instance/setUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTreeView.class/instance/setUp..st -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeView.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViTreeView.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViTreeViewExtended.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViUIManager.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViUIManager.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViUIManager.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViUnboxingDragDropSpec.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViVerticalLayout.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViWindow.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViWindow.class/instance/closeBoxHit.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | closeBoxHit 3 | 4 | self pane tryClose. -------------------------------------------------------------------------------- /repository/Vivide.package/ViWindow.class/instance/copyBoxHit.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | copyBoxHit 3 | 4 | self pane copyTool. -------------------------------------------------------------------------------- /repository/Vivide.package/ViWindow.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViWindow.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViWindowsDashboard.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViWorkspace.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViWorkspace.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/ViWorkspace.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/ViWorkspaceView.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/ViWrappingLayout.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/README.md -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/class/active.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/class/active.st -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/class/appName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | appName 3 | 4 | ^ 'vivide' -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/class/history.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/class/history.st -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/class/open.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/class/open.st -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/class/profiles.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/class/profiles.st -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/class/startUp..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/class/startUp..st -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/class/unload.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/class/unload.st -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/instance/close.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/instance/close.st -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/instance/isDockingBar.st: -------------------------------------------------------------------------------- 1 | testing 2 | isDockingBar 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/instance/open.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/instance/open.st -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/instance/panes.st: -------------------------------------------------------------------------------- 1 | accessing 2 | panes 3 | 4 | ^ self world submorphsSatisfying: [:m | m isPane] -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/instance/yellowButtonActivity..st: -------------------------------------------------------------------------------- 1 | event handling 2 | yellowButtonActivity: shiftState 3 | 4 | "Do nothing." -------------------------------------------------------------------------------- /repository/Vivide.package/VivideLight.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideLight.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/VivideToolBar.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/VivideToolBar.class/instance/contentContainer.st: -------------------------------------------------------------------------------- 1 | accessing 2 | contentContainer 3 | 4 | ^ self -------------------------------------------------------------------------------- /repository/Vivide.package/VivideToolBar.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/VivideToolBar.class/properties.json -------------------------------------------------------------------------------- /repository/Vivide.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/Vivide.package/monticello.meta/categories.st -------------------------------------------------------------------------------- /repository/Vivide.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/Vivide.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/VivideScripts.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/VivideScripts.package/.filetree -------------------------------------------------------------------------------- /repository/VivideScripts.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/VivideScripts.package/.squot-contents -------------------------------------------------------------------------------- /repository/VivideScripts.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'VivideScripts-Squeak'! 2 | -------------------------------------------------------------------------------- /repository/VivideScripts.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideScripts.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /repository/VivideTests.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/VivideTests.package/.filetree -------------------------------------------------------------------------------- /repository/VivideTests.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/VivideTests.package/.squot-contents -------------------------------------------------------------------------------- /repository/VivideTests.package/ViArtifactContainerTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViArtifactContainerTests.class/class/isAbstract.st: -------------------------------------------------------------------------------- 1 | testing 2 | isAbstract 3 | 4 | ^ self == ViArtifactContainerTests -------------------------------------------------------------------------------- /repository/VivideTests.package/ViArtifactListViewTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViConverterForClassArchiveTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViConverterTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViConverterTests.class/class/shouldInheritSelectors.st: -------------------------------------------------------------------------------- 1 | testing 2 | shouldInheritSelectors 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/VivideTests.package/ViFrequentlyUsedHistoryTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViFrequentlyUsedHistoryTests.class/instance/subjectClass.st: -------------------------------------------------------------------------------- 1 | accessing 2 | subjectClass 3 | 4 | ^ ViFrequentlyUsedHistory -------------------------------------------------------------------------------- /repository/VivideTests.package/ViModelNodeTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViMorphicTestCase.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViMorphicTestCase.class/class/isAbstract.st: -------------------------------------------------------------------------------- 1 | testing 2 | isAbstract 3 | 4 | ^ self == ViMorphicTestCase -------------------------------------------------------------------------------- /repository/VivideTests.package/ViObjectChangeNotifierTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViObjectHistoryTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViObjectHistoryTests.class/class/shouldInheritSelectors.st: -------------------------------------------------------------------------------- 1 | testing 2 | shouldInheritSelectors 3 | 4 | ^ true -------------------------------------------------------------------------------- /repository/VivideTests.package/ViPaneTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViProfileTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViRecentlyUsedHistoryTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViRecentlyUsedHistoryTests.class/instance/subjectClass.st: -------------------------------------------------------------------------------- 1 | accessing 2 | subjectClass 3 | 4 | ^ ViRecentlyUsedHistory -------------------------------------------------------------------------------- /repository/VivideTests.package/ViScriptChangeNotifierTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViScriptEditorTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViScriptInterpreterTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViScriptOrganizerTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViScriptOrganizerTests.class/instance/expectedFailures.st: -------------------------------------------------------------------------------- 1 | testing 2 | expectedFailures 3 | 4 | ^ #(test04OrganizationsAsNamespaces) -------------------------------------------------------------------------------- /repository/VivideTests.package/ViScriptTemplateTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViScriptTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViStackWatcherTests.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/ViStackWatcherTests.class/instance/defaultTimeout.st: -------------------------------------------------------------------------------- 1 | accessing 2 | defaultTimeout 3 | 4 | ^ 500 -------------------------------------------------------------------------------- /repository/VivideTests.package/VivideTestCase.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/VivideTests.package/VivideTestCase.class/README.md -------------------------------------------------------------------------------- /repository/VivideTests.package/VivideTestCase.class/class/isAbstract.st: -------------------------------------------------------------------------------- 1 | testing 2 | isAbstract 3 | 4 | ^ self == VivideTestCase -------------------------------------------------------------------------------- /repository/VivideTests.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/repository/VivideTests.package/monticello.meta/categories.st -------------------------------------------------------------------------------- /repository/VivideTests.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repository/VivideTests.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /scripts/prepare_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/scripts/prepare_image.sh -------------------------------------------------------------------------------- /scripts/prepare_image.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpi-swa/vivide/HEAD/scripts/prepare_image.st --------------------------------------------------------------------------------