Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'rpm/org.eclipse.linuxtools.rpm.ui.editor/src/org/eclipse/linuxtools/internal/rpm/ui/editor/RpmTags.java')
-rw-r--r--rpm/org.eclipse.linuxtools.rpm.ui.editor/src/org/eclipse/linuxtools/internal/rpm/ui/editor/RpmTags.java71
1 files changed, 36 insertions, 35 deletions
diff --git a/rpm/org.eclipse.linuxtools.rpm.ui.editor/src/org/eclipse/linuxtools/internal/rpm/ui/editor/RpmTags.java b/rpm/org.eclipse.linuxtools.rpm.ui.editor/src/org/eclipse/linuxtools/internal/rpm/ui/editor/RpmTags.java
index 5f95106589..1cb498dd9c 100644
--- a/rpm/org.eclipse.linuxtools.rpm.ui.editor/src/org/eclipse/linuxtools/internal/rpm/ui/editor/RpmTags.java
+++ b/rpm/org.eclipse.linuxtools.rpm.ui.editor/src/org/eclipse/linuxtools/internal/rpm/ui/editor/RpmTags.java
@@ -1,48 +1,49 @@
/*******************************************************************************
- * Copyright (c) 2008, 2009 Red Hat, Inc.
- * 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
- * http://www.eclipse.org/legal/epl-v10.html
+ * Copyright (c) 2008, 2018 Red Hat, Inc.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat - initial API and implementation
*******************************************************************************/
package org.eclipse.linuxtools.internal.rpm.ui.editor;
-
/**
* Definitions of all rpm tags.
*
*/
public interface RpmTags {
- String SUMMARY = "Summary"; //$NON-NLS-1$
- String NAME = "Name"; //$NON-NLS-1$
- String VERSION = "Version"; //$NON-NLS-1$
- String PACKAGER = "Packager"; //$NON-NLS-1$
- String ICON = "Icon"; //$NON-NLS-1$
- String URL = "URL"; //$NON-NLS-1$
- String PREFIX = "Prefix"; //$NON-NLS-1$
- String GROUP = "Group"; //$NON-NLS-1$
- String LICENSE = "License"; //$NON-NLS-1$
- String RELEASE = "Release"; //$NON-NLS-1$
- String BUILD_ROOT = "BuildRoot"; //$NON-NLS-1$
- String DISTRIBUTION = "Distribution"; //$NON-NLS-1$
- String VENDOR = "Vendor"; //$NON-NLS-1$
- String PROVIDES = "Provides"; //$NON-NLS-1$
- String EXCLUSIVE_ARCH = "ExclusiveArch"; //$NON-NLS-1$
- String EXCLUDE_ARCH = "ExcludeArch"; //$NON-NLS-1$
- String EXCLUDE_OS = "ExclusiveOS"; //$NON-NLS-1$
- String BUILD_ARCH = "BuildArch"; //$NON-NLS-1$
- String BUILD_ARCHITECTURES = "BuildArchitectures"; //$NON-NLS-1$
- String AUTO_REQUIRES = "AutoRequires"; //$NON-NLS-1$
- String AUTO_REQ = "AutoReq"; //$NON-NLS-1$
- String AUTO_REQ_PROV = "AutoReqProv"; //$NON-NLS-1$
- String AUTO_PROV = "AutoProv"; //$NON-NLS-1$
- String EPOCH = "Epoch"; //$NON-NLS-1$
- String OBSOLETES = "Obsoletes"; //$NON-NLS-1$
- String REQUIRES = "Requires"; //$NON-NLS-1$
- String REQUIRES_PRE = "Requires(pre)"; //$NON-NLS-1$
- String REQUIRES_POST = "Requires(post)"; //$NON-NLS-1$
- String REQUIRES_POSTUN = "Requires(postun)"; //$NON-NLS-1$
+ String SUMMARY = "Summary"; //$NON-NLS-1$
+ String NAME = "Name"; //$NON-NLS-1$
+ String VERSION = "Version"; //$NON-NLS-1$
+ String PACKAGER = "Packager"; //$NON-NLS-1$
+ String ICON = "Icon"; //$NON-NLS-1$
+ String URL = "URL"; //$NON-NLS-1$
+ String PREFIX = "Prefix"; //$NON-NLS-1$
+ String GROUP = "Group"; //$NON-NLS-1$
+ String LICENSE = "License"; //$NON-NLS-1$
+ String RELEASE = "Release"; //$NON-NLS-1$
+ String BUILD_ROOT = "BuildRoot"; //$NON-NLS-1$
+ String DISTRIBUTION = "Distribution"; //$NON-NLS-1$
+ String VENDOR = "Vendor"; //$NON-NLS-1$
+ String PROVIDES = "Provides"; //$NON-NLS-1$
+ String EXCLUSIVE_ARCH = "ExclusiveArch"; //$NON-NLS-1$
+ String EXCLUDE_ARCH = "ExcludeArch"; //$NON-NLS-1$
+ String EXCLUDE_OS = "ExclusiveOS"; //$NON-NLS-1$
+ String BUILD_ARCH = "BuildArch"; //$NON-NLS-1$
+ String BUILD_ARCHITECTURES = "BuildArchitectures"; //$NON-NLS-1$
+ String AUTO_REQUIRES = "AutoRequires"; //$NON-NLS-1$
+ String AUTO_REQ = "AutoReq"; //$NON-NLS-1$
+ String AUTO_REQ_PROV = "AutoReqProv"; //$NON-NLS-1$
+ String AUTO_PROV = "AutoProv"; //$NON-NLS-1$
+ String EPOCH = "Epoch"; //$NON-NLS-1$
+ String OBSOLETES = "Obsoletes"; //$NON-NLS-1$
+ String REQUIRES = "Requires"; //$NON-NLS-1$
+ String REQUIRES_PRE = "Requires(pre)"; //$NON-NLS-1$
+ String REQUIRES_POST = "Requires(post)"; //$NON-NLS-1$
+ String REQUIRES_POSTUN = "Requires(postun)"; //$NON-NLS-1$
}

Back to the top