/******************************************************************************* * * Copyright (c) 2011 Oracle Corporation. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * * Anton Kozak * *******************************************************************************/ package org.eclipse.hudson.model.project.property; import hudson.model.Result; import org.eclipse.hudson.api.model.ICascadingJob; /** * Represents {@link Result} property. * <p/> * Date: 9/23/11 * * @author Anton Kozak */ public class ResultProjectProperty extends BaseProjectProperty<Result> { public ResultProjectProperty(ICascadingJob job) { super(job); } }