Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 87232 Details for
Bug 185959
Related to bugs 153826 and 155567 for Symptom Catalog Creation Wizard
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch file
tptp_patch_bugzilla185959_20080117.txt (text/plain), 4.69 KB, created by
Yasuhisa Gotoh
on 2008-01-18 01:28:17 EST
(
hide
)
Description:
Patch file
Filename:
MIME Type:
Creator:
Yasuhisa Gotoh
Created:
2008-01-18 01:28:17 EST
Size:
4.69 KB
patch
obsolete
>Index: src/org/eclipse/tptp/symptom/internal/util/SymptomEditToolTips.java >=================================================================== >RCS file: /cvsroot/tptp/monitoring/org.eclipse.hyades.sdb/src/org/eclipse/tptp/symptom/internal/util/SymptomEditToolTips.java,v >retrieving revision 1.1 >diff -u -r1.1 SymptomEditToolTips.java >--- src/org/eclipse/tptp/symptom/internal/util/SymptomEditToolTips.java 4 Mar 2007 00:42:03 -0000 1.1 >+++ src/org/eclipse/tptp/symptom/internal/util/SymptomEditToolTips.java 18 Jan 2008 06:24:39 -0000 >@@ -62,8 +62,10 @@ > public static String symptomEngine; > public static String symptomPriority; > public static String symptomProbability; >- >- >+ >+ public static String folderName; >+ public static String catalogFormat; >+ > static { > NLS.initializeMessages(BUNDLE_NAME, SymptomEditToolTips.class); > } >Index: src/org/eclipse/tptp/symptom/internal/util/tooltips.properties >=================================================================== >RCS file: /cvsroot/tptp/monitoring/org.eclipse.hyades.sdb/src/org/eclipse/tptp/symptom/internal/util/tooltips.properties,v >retrieving revision 1.4 >diff -u -r1.4 tooltips.properties >--- src/org/eclipse/tptp/symptom/internal/util/tooltips.properties 2 Nov 2007 15:34:40 -0000 1.4 >+++ src/org/eclipse/tptp/symptom/internal/util/tooltips.properties 18 Jan 2008 06:24:40 -0000 >@@ -54,3 +54,6 @@ > symptomEngine = Optional attribute specifying the symptom engine that was used to generate the current symptom. > symptomPriority = Optional attribute specifying the priority of the symptom. Symptom priority defines how a symptom takes precedence over other symptoms. > symptomProbability = Optional attribute specifying the probability of the symptom. This attribute indicates the degree of certainty with which the correlation engine has recognized the symptom. >+ >+folderName = Name of the folder where the symptom catalog is created. >+catalogFormat = Format of the symptom catalog. >Index: src/org/eclipse/hyades/sdb/internal/wizard/NewSymptomDBWizardPage.java >=================================================================== >RCS file: /cvsroot/tptp/monitoring/org.eclipse.hyades.sdb/src/org/eclipse/hyades/sdb/internal/wizard/NewSymptomDBWizardPage.java,v >retrieving revision 1.32 >diff -u -r1.32 NewSymptomDBWizardPage.java >--- src/org/eclipse/hyades/sdb/internal/wizard/NewSymptomDBWizardPage.java 8 Aug 2007 22:16:43 -0000 1.32 >+++ src/org/eclipse/hyades/sdb/internal/wizard/NewSymptomDBWizardPage.java 18 Jan 2008 06:24:39 -0000 >@@ -1,5 +1,5 @@ > /********************************************************************** >- * Copyright (c) 2005, 2007 IBM Corporation and others. >+ * Copyright (c) 2005, 2008 IBM Corporation and others. > * All rights reserved. This program and the accompanying materials > * are made available under the terms of the Eclipse Public License v1.0 > * which accompanies this distribution, and is available at >@@ -68,6 +68,7 @@ > import org.eclipse.tptp.platform.models.symptom.recommendation.RecommendationPackage; > import org.eclipse.tptp.platform.models.symptom.resource.ResourcePackage; > import org.eclipse.tptp.platform.models.xpath.expression.ExpressionPackage; >+import org.eclipse.tptp.symptom.internal.util.SymptomEditToolTips; > import org.eclipse.tptp.symptom.internal.util.SymptomEditUtil; > import org.eclipse.tptp.symptom.provider.SymptomEditPlugin; > import org.eclipse.ui.IWorkbenchWindow; >@@ -171,6 +172,7 @@ > //data.grabExcessHorizontalSpace = true; > txtLocationFolder.setLayoutData(data); > txtLocationFolder.setText(selFolder); >+ txtLocationFolder.setToolTipText(SymptomEditToolTips.folderName); > > // location folder browse button > btnLocationBrowse = new Button(locationGrp, SWT.PUSH); >@@ -188,6 +190,7 @@ > > txtDBName = new Text(parent, SWT.BORDER); > txtDBName.setLayoutData(GridUtil.createHorizontalFill()); >+ txtDBName.setToolTipText(SymptomEditToolTips.catalogName); > > Label dummy = new Label(parent, SWT.NONE); > dummy.setVisible(false); >@@ -200,13 +203,14 @@ > descriptionLabel.setLayoutData(data); > > >- txtDescription = new Text(parent, SWT.BORDER | SWT.MULTI); >+ txtDescription = new Text(parent, (SWT.BORDER | SWT.MULTI | SWT.WRAP)); > data = new GridData(); > data.verticalAlignment = GridData.FILL; > data.horizontalAlignment = GridData.FILL; > data.heightHint = 150; > > txtDescription.setLayoutData(data); >+ txtDescription.setToolTipText(SymptomEditToolTips.catalogDescr); > > } > >@@ -236,6 +240,7 @@ > setPageComplete(determinePageCompletion()); > }; > }); >+ cmbFormat.setToolTipText(SymptomEditToolTips.catalogFormat); > PlatformUI.getWorkbench().getHelpSystem().setHelp(cmbFormat, ContextIds.NEW_SYMDB_FORMAT); > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 185959
: 87232