package org.fluentlenium.core.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Mark a field as a Page Object that should be automatically created by FluentLenium. */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Page { }