~ubuntu-branches/ubuntu/maverick/ant/maverick

« back to all changes in this revision

Viewing changes to src/main/org/apache/tools/ant/types/resources/SizeLimitCollection.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-09-30 14:47:45 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080930144745-0x8uzivd9t15dua3
Tags: 1.7.1-0ubuntu1
* New upstream version (bug fix release).
  - mainly a bugfix release.
  - has extended support for Java6 features.
  - <script> now has support for JavaFX.
  - release notes: http://apache.linux-mirror.org/ant/README.html
* Remove debian/patches/05_ant-bug433444.patch. Obsoleted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 
3
 *  contributor license agreements.  See the NOTICE file distributed with
 
4
 *  this work for additional information regarding copyright ownership.
 
5
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 
6
 *  (the "License"); you may not use this file except in compliance with
 
7
 *  the License.  You may obtain a copy of the License at
 
8
 *
 
9
 *      http://www.apache.org/licenses/LICENSE-2.0
 
10
 *
 
11
 *  Unless required by applicable law or agreed to in writing, software
 
12
 *  distributed under the License is distributed on an "AS IS" BASIS,
 
13
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
 *  See the License for the specific language governing permissions and
 
15
 *  limitations under the License.
 
16
 *
 
17
 */
 
18
package org.apache.tools.ant.types.resources;
 
19
 
 
20
import org.apache.tools.ant.BuildException;
 
21
 
 
22
/**
 
23
 * ResourceCollection that imposes a size limit on another ResourceCollection.
 
24
 * @since Ant 1.7.1
 
25
 */
 
26
public abstract class SizeLimitCollection extends BaseResourceCollectionWrapper {
 
27
    private static final String BAD_COUNT
 
28
        = "size-limited collection count should be set to an int >= 0";
 
29
 
 
30
    private int count = 1;
 
31
 
 
32
    /**
 
33
     * Set the number of resources to be included.
 
34
     * @param i the count as <code>int</count>.
 
35
     */
 
36
    public synchronized void setCount(int i) {
 
37
        count = i;
 
38
    }
 
39
 
 
40
    /**
 
41
     * Get the number of resources to be included. Default is 1.
 
42
     * @return the count as <code>int</count>.
 
43
     */
 
44
    public synchronized int getCount() {
 
45
        return count;
 
46
    }
 
47
 
 
48
    /**
 
49
     * Efficient size implementation.
 
50
     * @return int size
 
51
     */
 
52
    public synchronized int size() {
 
53
        int sz = getResourceCollection().size();
 
54
        int ct = getValidCount();
 
55
        return sz < ct ? sz : ct;
 
56
    }
 
57
 
 
58
    /**
 
59
     * Get the count, verifying it is >= 0.
 
60
     * @return int count
 
61
     */
 
62
    protected int getValidCount() {
 
63
        int ct = getCount();
 
64
        if (ct < 0) {
 
65
            throw new BuildException(BAD_COUNT);
 
66
        }
 
67
        return ct;
 
68
    }
 
69
 
 
70
}