~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to parts/distpart/packagebase.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "packagebase.h"
 
2
 
 
3
packageBase::packageBase() {
 
4
 
 
5
}
 
6
 
 
7
packageBase::~packageBase() {}
 
8
 
 
9
QString packageBase::getAppName() {
 
10
    return AppName;
 
11
}
 
12
 
 
13
QString packageBase::getAppVersion() {
 
14
    return AppVersion;
 
15
}
 
16
 
 
17
QString packageBase::getAppRevision() {
 
18
    return AppRevision;
 
19
}
 
20
 
 
21
QString packageBase::getAppGroup() {
 
22
    return AppGroup;
 
23
}
 
24
 
 
25
QString packageBase::getAppPackager() {
 
26
    return AppPackager;
 
27
}
 
28
 
 
29
QString packageBase::getAppURL() {
 
30
    return AppURL;
 
31
}
 
32
 
 
33
QString packageBase::getAppSummary() {
 
34
    return AppSummary;
 
35
}
 
36
 
 
37
QString packageBase::getAppVendor() {
 
38
    return AppVendor;
 
39
}
 
40
 
 
41
QString packageBase::getAppLicense() {
 
42
    return AppLicense;
 
43
}
 
44
 
 
45
QString packageBase::getAppArch() {
 
46
    return AppArch;
 
47
}
 
48
 
 
49
QString packageBase::getAppDescription() {
 
50
    return AppDescription;
 
51
}
 
52
 
 
53
QString packageBase::getAppChangelog() {
 
54
    return AppChangelog;
 
55
}
 
56
 
 
57
QString packageBase::getAppSource() {
 
58
    return AppSource;
 
59
}
 
60
 
 
61
QStringList packageBase::getAppFileList() {
 
62
    return AppFileList;
 
63
}
 
64
 
 
65
void packageBase::setAppName(const QString& name) {
 
66
    AppName = name;
 
67
}
 
68
 
 
69
void packageBase::setAppVersion(const QString& version){
 
70
   AppVersion = version;
 
71
}
 
72
 
 
73
void packageBase::setAppRevision(const QString& revision){
 
74
    AppRevision = revision;
 
75
}
 
76
 
 
77
void packageBase::setAppGroup(const QString& group){
 
78
   AppGroup = group;
 
79
}
 
80
 
 
81
void packageBase::setAppPackager(const QString& packager){
 
82
    AppPackager = packager;
 
83
}
 
84
 
 
85
void packageBase::setAppURL(const QString& url)
 
86
{
 
87
    AppURL = url;
 
88
}
 
89
 
 
90
void packageBase::setAppSummary(const QString& summary){
 
91
    AppSummary = summary;
 
92
}
 
93
 
 
94
void packageBase::setAppVendor(const QString& vendor){
 
95
    AppVendor = vendor;
 
96
}
 
97
 
 
98
void packageBase::setAppLicense(const QString& licence){
 
99
    AppLicense = licence;
 
100
}
 
101
 
 
102
void packageBase::setAppArch(const QString& arch){
 
103
    AppArch = arch;
 
104
}
 
105
 
 
106
void packageBase::setAppDescription(const QString& description){
 
107
    AppDescription = description;
 
108
}
 
109
 
 
110
void packageBase::setAppChangelog(const QString& changelog){
 
111
    AppChangelog = changelog;
 
112
}
 
113
 
 
114
void packageBase::setAppFileList( const QStringList & list )
 
115
{
 
116
        AppFileList = list;
 
117
}