BrightSide Workbench Full Report + Source Code
AttachmentData.java
Go to the documentation of this file.
1
/*
2
* TurrĂ³ i Cutiller Foundation. License notice.
3
* Copyright (C) 2011 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4
*
5
* This program is free software: you can redistribute it and/or modify
6
* it under the terms of the GNU Affero General Public License as published by
7
* the Free Software Foundation, either version 3 of the License, or
8
* (at your option) any later version.
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU Affero General Public License for more details.
14
*
15
* You should have received a copy of the GNU Affero General Public License
16
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17
*/
18
package
org.turro.attach.version;
19
20
import
org.turro.attach.entity.Attachment;
21
26
public
class
AttachmentData
{
27
28
private
long
size, versionedSize;
29
30
public
AttachmentData
(
AttachVersionSet
set
) {
31
size = -1;
32
versionedSize = 0;
33
for
(
Attachment
a :
set
) {
34
versionedSize += a.
getFileSize
();
35
if
(size < 0) {
36
size = versionedSize;
37
}
38
}
39
}
40
41
public
long
getSize
() {
42
return
size;
43
}
44
45
public
long
getVersionedSize
() {
46
return
versionedSize;
47
}
48
49
}
org.turro.attach.entity.Attachment
Definition:
Attachment.java:60
org.turro.attach.entity.Attachment.getFileSize
long getFileSize()
Definition:
Attachment.java:247
org.turro.attach.version.AttachVersionSet
Definition:
AttachVersionSet.java:27
org.turro.attach.version.AttachmentData
Definition:
AttachmentData.java:26
org.turro.attach.version.AttachmentData.getSize
long getSize()
Definition:
AttachmentData.java:41
org.turro.attach.version.AttachmentData.AttachmentData
AttachmentData(AttachVersionSet set)
Definition:
AttachmentData.java:30
org.turro.attach.version.AttachmentData.getVersionedSize
long getVersionedSize()
Definition:
AttachmentData.java:45
TurroProjects
Public
BrightSide
elephant-attach
src
main
java
org
turro
attach
version
AttachmentData.java
Generated on Tue Mar 12 2024 07:01:17 for BrightSide by
1.9.1