C# 클래스 EAAddinFramework.Utilities.EAOutputLogger

Description of EAOutputLogger.
파일 보기 프로젝트 열기: GeertBellekens/Enterprise-Architect-Add-in-Framework

공개 메소드들

메소드 설명
clearLog ( Model model, string outputName ) : void
log ( Model model, string outputName, string message, int elementID, LogTypeEnum logType = LogTypeEnum.none ) : void

log a message to the EA output window. If requested the message will also be logged to the logfile

비공개 메소드들

메소드 설명
EAOutputLogger ( Model model, string outputName ) : System

private constructor

clear ( ) : void
getOutputLogger ( Model model, string outputName ) : EAOutputLogger
logToOutput ( string message, int elementID ) : void

메소드 상세

clearLog() 공개 정적인 메소드

public static clearLog ( Model model, string outputName ) : void
model TSF.UmlToolingFramework.Wrappers.EA.Model
outputName string
리턴 void

log() 공개 정적인 메소드

log a message to the EA output window. If requested the message will also be logged to the logfile
public static log ( Model model, string outputName, string message, int elementID, LogTypeEnum logType = LogTypeEnum.none ) : void
model TSF.UmlToolingFramework.Wrappers.EA.Model the model on which to show the output
outputName string the name of the output window
message string the message to show
elementID int the element ID to associate with the message. Can be used by add-ins when they implement EA_OnOutput...
logType LogTypeEnum the type of logging to the logfile
리턴 void