KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > junit > mock > c19 > Home


1 // Copyright 2004, 2005 The Apache Software Foundation
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15 package org.apache.tapestry.junit.mock.c19;
16
17 import org.apache.tapestry.IRequestCycle;
18 import org.apache.tapestry.html.BasePage;
19 import org.apache.tapestry.request.IUploadFile;
20
21 /**
22  * Used in tests of upload and the {@link org.apache.tapestry.form.Upload}component.
23  *
24  * @author Howard Lewis Ship
25  * @since 3.0
26  */

27
28 public abstract class Home extends BasePage
29 {
30     public abstract IUploadFile getUploadFile();
31
32     public abstract void setUploadDisabled(boolean uploadDisabled);
33
34     public void formSubmit(IRequestCycle cycle)
35     {
36         IUploadFile file = getUploadFile();
37
38         if (file == null)
39         {
40             cycle.activate("Three");
41             return;
42         }
43
44         Two page = (Two) cycle.getPage("Two");
45
46         page.setFile(file);
47         cycle.activate(page);
48     }
49
50     public void disableUpload(IRequestCycle cycle)
51     {
52         setUploadDisabled(true);
53     }
54 }
Popular Tags