Uses of Class
com.natpryce.makeiteasy.Property

Packages that use Property
com.natpryce.makeiteasy A tiny framework to make it easy to write Test Data Builders in Java. 
example.donors   
example.fruit.makeiteasy   
 

Uses of Property in com.natpryce.makeiteasy
 

Methods in com.natpryce.makeiteasy that return Property
static
<T,V> Property<T,V>
Property.newProperty()
           
 Property<T,V> PropertyValue.property()
          The property
 

Methods in com.natpryce.makeiteasy with parameters of type Property
<V> V
PropertyLookup.valueOf(Property<? super T,V> property, Donor<? extends V> defaultValueDonor)
           
<V> V
Maker.valueOf(Property<? super T,V> property, Donor<? extends V> defaultValue)
           
<V> V
PropertyLookup.valueOf(Property<? super T,V> property, V defaultValue)
           
<V> V
Maker.valueOf(Property<? super T,V> property, V defaultValue)
           
static
<T,V,W extends V>
PropertyValue<T,V>
MakeItEasy.with(Donor<W> valueDonor, Property<T,V> property)
           
static
<T,V,W extends V>
PropertyValue<T,V>
MakeItEasy.with(Property<T,V> property, Donor<W> valueDonor)
           
static
<T,V,W extends V>
PropertyValue<T,V>
MakeItEasy.with(Property<T,V> property, W value)
           
static
<T,V,W extends V>
PropertyValue<T,V>
MakeItEasy.with(W value, Property<T,V> property)
           
 

Constructors in com.natpryce.makeiteasy with parameters of type Property
PropertyValue(Property<T,V> property, Donor<? extends V> valueDonor)
           
 

Uses of Property in example.donors
 

Fields in example.donors declared as Property
static Property<DonorExample.NamedThing,String> DonorExample.name
           
 

Uses of Property in example.fruit.makeiteasy
 

Fields in example.fruit.makeiteasy declared as Property
static Property<Tree<Apple>,Iterable<? extends Apple>> TreeMaker.apples
           
static Property<AppleCart,Iterable<Apple>> AppleCartMaker.apples
           
static Property<Tree<Banana>,Iterable<? extends Banana>> TreeMaker.bananas
           
static Property<FruitBowl,Iterable<? extends Fruit>> FruitBowlMaker.contents
           
static Property<Banana,Double> FruitMakers.curve
           
static Property<Apple,Integer> FruitMakers.leaves
           
static Property<Fruit,Double> FruitMakers.ripeness
           
 

Methods in example.fruit.makeiteasy that return Property
static
<F extends Fruit>
Property<Tree<F>,Iterable<? extends F>>
TreeMaker.fruit()
           
 



Copyright © 2010. All Rights Reserved.