update copyright
[fedora-idea.git] / plugins / testng / src / com / theoryinpractice / testng / model / TreeRootNode.java
blobc99f9f9120f08a7cd3e7e1a1fe868a3e317d9add
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.theoryinpractice.testng.model;
18 /**
19 * @author Hani Suleiman Date: Jul 31, 2005 Time: 10:15:02 PM
21 public class TreeRootNode extends TestProxy
23 private boolean inProgress;
24 private boolean isStarted;
26 public TreeRootNode() {
27 inProgress = false;
28 isStarted = false;
31 @Override
32 public boolean isInProgress() {
33 return inProgress;
36 public void setInProgress(boolean inProgress) {
37 this.inProgress = inProgress;
40 public boolean isStarted() {
41 return isStarted;
44 public void setStarted(boolean started) {
45 isStarted = started;