Home
last modified time | relevance | path

Searched refs:AboutInfo (Results 1 – 25 of 67) sorted by relevance

123

/dports/audio/flacon/flacon-8.2.0/gui/aboutdialog/
H A Daboutdialog.cpp153 AboutInfo AboutDialog::authorsInfo() const in authorsInfo()
155 AboutInfo result; in authorsInfo()
163 AboutInfo AboutDialog::thanksInfo() const in thanksInfo()
165 AboutInfo result; in thanksInfo()
206 AboutInfo AboutDialog::programsInfo() const in programsInfo()
208 AboutInfo result; in programsInfo()
254 AboutInfo::AboutInfo() : in AboutInfo() function in AboutInfo
262 QString AboutInfo::asString() const in asString()
264 AboutInfo list = *this; in asString()
293 void AboutInfo::add(const QString &name, const QString &url, const QString &description) in add()
H A Daboutdialog.h39 class AboutInfo : public QList<AboutInfoItem>
42 AboutInfo();
64 AboutInfo authorsInfo() const;
65 AboutInfo thanksInfo() const;
67 AboutInfo programsInfo() const;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/
H A DQuickStartAction.java38 import org.eclipse.ui.internal.ide.AboutInfo;
99 AboutInfo feature = promptForFeature(); in run()
110 private AboutInfo promptForFeature() { in promptForFeature()
118 welcomeFeatures.add(new AboutInfo(product)); in promptForFeature()
121 AboutInfo[] features = IDEWorkbenchPlugin.getDefault() in promptForFeature()
123 for (AboutInfo feature : features) { in promptForFeature()
138 features = new AboutInfo[welcomeFeatures.size()]; in promptForFeature()
159 AboutInfo feature = findFeature(featureId); in openWelcomePage()
173 private AboutInfo findFeature(String featureId) { in findFeature()
176 for (AboutInfo info : features) { in findFeature()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/
H A DFeatureSelectionDialog.java40 public class FeatureSelectionDialog extends AbstractSelectionDialog<AboutInfo> {
54 private AboutInfo[] features;
80 public FeatureSelectionDialog(Shell shell, AboutInfo[] features, in FeatureSelectionDialog()
94 Arrays.sort(features, new Comparator<AboutInfo>() { in FeatureSelectionDialog()
98 public int compare(AboutInfo i1, AboutInfo i2) { in FeatureSelectionDialog()
113 for (AboutInfo feature : features) { in FeatureSelectionDialog()
147 return element == null ? "" : ((AboutInfo) element).getFeatureLabel(); //$NON-NLS-1$ in createDialogArea()
174 setResult(listViewer.getStructuredSelection(), AboutInfo.class); in okPressed()
H A DTipsAndTricksAction.java77 AboutInfo[] featureInfos = IDEWorkbenchPlugin.getDefault() in run()
79 ArrayList<AboutInfo> tipsAndTricksFeatures = new ArrayList<>(featureInfos.length); in run()
80 for (AboutInfo featureInfo : featureInfos) { in run()
94 AboutInfo[] features = new AboutInfo[tipsAndTricksFeatures.size()]; in run()
108 AboutInfo feature = d.getFirstResult().orElse(null); in run()
H A DAboutInfo.java41 public final class AboutInfo { class
53 public AboutInfo(IProduct product) { in AboutInfo() method in AboutInfo
60 public AboutInfo(IBundleGroup bundleGroup) { in AboutInfo() method in AboutInfo
73 public static AboutInfo readFeatureInfo(String featureId, String versionId) { in readFeatureInfo()
81 return new AboutInfo(product); in readFeatureInfo()
87 return new AboutInfo(bundleGroup); in readFeatureInfo()
H A DIDEWorkbenchPlugin.java297 public AboutInfo[] getFeatureInfos() { in getFeatureInfos()
299 List<AboutInfo> infos = new ArrayList<>(); in getFeatureInfos()
306 infos.add(new AboutInfo(bundleGroup)); in getFeatureInfos()
311 return infos.toArray(new AboutInfo[infos.size()]); in getFeatureInfos()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform/update/org.eclipse.update.configurator/src/org/eclipse/update/internal/configurator/branding/
H A DAboutInfo.java30 public final class AboutInfo { class
53 /* package */ AboutInfo(String featureId) { in AboutInfo() method in AboutInfo
67 public static AboutInfo readFeatureInfo(String featureId, String versionId, String pluginId) { in readFeatureInfo()
79 AboutInfo info = new AboutInfo(featureId); in readFeatureInfo()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/
H A DWelcomeEditorInput.java22 import org.eclipse.ui.internal.ide.AboutInfo;
29 private AboutInfo aboutInfo;
38 public WelcomeEditorInput(AboutInfo info) { in WelcomeEditorInput()
82 public AboutInfo getAboutInfo() {
H A DWelcomeEditorInputFactory.java19 import org.eclipse.ui.internal.ide.AboutInfo;
65 AboutInfo info = AboutInfo.readFeatureInfo(featureId, versionId); in createElement()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/
H A DIDEWorkbenchAdvisor.java76 import org.eclipse.ui.internal.ide.AboutInfo;
119 private Map<String, AboutInfo> newlyAddedBundleGroups;
125 private AboutInfo[] welcomePerspectiveInfos = null;
546 AboutInfo[] welcomeInfos = getWelcomePerspectiveInfos(); in getInitialWindowPerspectiveId()
565 private Map<String, AboutInfo> computeBundleGroupMap() { in computeBundleGroupMap()
567 Map<String, AboutInfo> ids = new TreeMap<>(); in computeBundleGroupMap()
573 AboutInfo info = new AboutInfo(group); in computeBundleGroupMap()
917 public AboutInfo[] getWelcomePerspectiveInfos() { in getWelcomePerspectiveInfos()
922 ArrayList<AboutInfo> list = new ArrayList<>(m.size()); in getWelcomePerspectiveInfos()
923 for (AboutInfo info : m.values()) { in getWelcomePerspectiveInfos()
[all …]
H A DIDEWorkbenchWindowAdvisor.java77 import org.eclipse.ui.internal.ide.AboutInfo;
520 AboutInfo[] welcomePerspectiveInfos = wbAdvisor in postWindowRestore()
595 AboutInfo productInfo = new AboutInfo(product); in openWelcomeEditors()
606 List<AboutInfo> welcomeFeatures = new ArrayList<>(); in openWelcomeEditors()
607 for (AboutInfo info : wbAdvisor.getNewlyAddedBundleGroups().values()) { in openWelcomeEditors()
630 AboutInfo newInfo = welcomeFeatures.get(i); in openWelcomeEditors()
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/legacy-cloud-providers/vsphere/vclib/
H A Dvsphere_metrics.go52 vCenterInfos: make(map[string]types.AboutInfo),
114 vCenterInfos map[string]types.AboutInfo
136 func (collector *vcenterMetric) setAbout(server string, info types.AboutInfo) {
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform/update/org.eclipse.update.configurator/src/org/eclipse/update/internal/configurator/
H A DFeatureEntry.java50 private AboutInfo branding;
212 branding = AboutInfo.readFeatureInfo(id, version, getFeaturePluginIdentifier()); in getName()
222 branding = AboutInfo.readFeatureInfo(id, version, getFeaturePluginIdentifier()); in getProperty()
266 branding = AboutInfo.readFeatureInfo(id, version, getFeaturePluginIdentifier()); in getProviderName()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/product/
H A DAboutInfo.java24 public class AboutInfo extends ProductObject implements IAboutInfo { class
30 public AboutInfo(IProductModel model) { in AboutInfo() method in AboutInfo
/dports/net-mgmt/librenms/librenms-21.5.1/mibs/vmware/
H A DVMWARE-SYSTEM-MIB54 VIM Property: AboutInfo.name
64 VIM Property: AboutInfo.version
76 VIM Property: AboutInfo.build
/dports/net-mgmt/netdisco-mibs/netdisco-mibs-4.010/vmware/
H A Dvmware-system-mib.mib54 VIM Property: AboutInfo.name
64 VIM Property: AboutInfo.version
76 VIM Property: AboutInfo.build
/dports/net-mgmt/observium/observium/mibs/vmware/
H A DVMWARE-SYSTEM-MIB54 VIM Property: AboutInfo.name
64 VIM Property: AboutInfo.version
76 VIM Property: AboutInfo.build
/dports/security/vault/vault-1.8.2/vendor/github.com/vmware/govmomi/govc/about/
H A Dcommand.go93 About *types.AboutInfo `json:",omitempty"`
94 a *types.AboutInfo
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/vmware/govmomi/govc/about/
H A Dcommand.go93 About *types.AboutInfo `json:",omitempty"`
94 a *types.AboutInfo
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/vmware/govmomi/govc/about/
H A Dcommand.go93 About *types.AboutInfo `json:",omitempty"`
94 a *types.AboutInfo
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-applicationhistoryservice/src/main/java/org/apache/hadoop/yarn/server/timeline/webapp/
H A DTimelineWebServices.java93 public static class AboutInfo { class in TimelineWebServices
97 public AboutInfo() { in AboutInfo() method in TimelineWebServices.AboutInfo
101 public AboutInfo(String about) { in AboutInfo() method in TimelineWebServices.AboutInfo
121 public AboutInfo about( in about()
125 return new AboutInfo("Timeline API"); in about()
/dports/security/vault/vault-1.8.2/vendor/github.com/vmware/govmomi/simulator/esx/
H A Dservice_content.go28 About: types.AboutInfo{
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/vmware/govmomi/simulator/esx/
H A Dservice_content.go28 About: types.AboutInfo{
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/github.com/vmware/govmomi/simulator/esx/
H A Dservice_content.go28 About: types.AboutInfo{

123