/*license*\ XBN-Java: Copyright (C) 2014, Jeff Epstein (aliteralmind __DASH__ github __AT__ yahoo __DOT__ com) This software is dual-licensed under the: - Lesser General Public License (LGPL) version 3.0 or, at your option, any later version; - Apache Software License (ASL) version 2.0. Either license may be applied at your discretion. More information may be found at - http://en.wikipedia.org/wiki/Multi-licensing. The text of both licenses is available in the root directory of this project, under the names "LICENSE_lgpl-3.0.txt" and "LICENSE_asl-2.0.txt". The latest copies may be downloaded at: - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt \*license*/ package com.github.xbn.linefilter.entity.z; import com.github.xbn.linefilter.entity.raw.RawOnOffEntityFilter; import com.github.xbn.linefilter.entity.raw.z.RawSingleLineEntity_CfgForNeeder; import com.github.xbn.analyze.alter.ValueAlterer; import com.github.xbn.neederneedable.Needer; import com.github.xbn.linefilter.entity.SingleLineEntity; /** <p>For <a href="{@docRoot}/com/github/xbn/neederneedable/Needable.html#indirect">indirectly</a> configuring a {@link com.github.xbn.linefilter.entity.raw.RawSingleLineEntity RawSingleLineEntity}.</p> * @since 0.1.0 * @author Copyright (C) 2014, Jeff Epstein ({@code aliteralmind __DASH__ github __AT__ yahoo __DOT__ com}), dual-licensed under the LGPL (version 3.0 or later) or the ASL (version 2.0). See source code for details. <a href="http://xbnjava.aliteralmind.com">{@code http://xbnjava.aliteralmind.com}</a>, <a href="https://github.com/aliteralmind/xbnjava">{@code https://github.com/aliteralmind/xbnjava}</a> **/ public abstract class SingleLineEntity_CfgForNeeder<M extends SingleLineEntity,R extends Needer> extends RawSingleLineEntity_CfgForNeeder<String,M,R> { //constructors...START /** <p>Create a new instance.</p> * <p>Equal to <br/>     <code><!-- GENERIC PARAMETERS FAIL IN @link --><a href="{@docRoot}/com/github/xbn/linefilter/entity/raw/z/RawSingleLineEntity_CfgForNeeder.html#RawSingleLineEntity_CfgForNeeder(R, java.lang.String)">super</a>(needer, name)</code></p> */ public SingleLineEntity_CfgForNeeder(R needer, String name) { super(needer, name); } /** <p>Reverts configuration so a line never matches.</p> * <p>Equal to <br/>     <code>{@link com.github.xbn.linefilter.entity.raw.z.RawSingleLineEntity_CfgForNeeder super}.{@link com.github.xbn.linefilter.entity.raw.z.RawSingleLineEntity_CfgForNeeder#reset() reset}()</code></p> * @return <i>{@code this}</i> */ public SingleLineEntity_CfgForNeeder<M,R> reset() { super.reset(); return this; } //self-returning setters...START /** <p>Output the line number of each match.</p> * @param dest_ifNonNull When non-{@code null}, this is used to write debugging output. Get with {@link com.github.xbn.linefilter.entity.raw.RawLineEntity#getDebugAptrLineNumbers() getDebugAptrLineNumbers}{@code ()}*. * @return <i>{@code this}</i> */ public SingleLineEntity_CfgForNeeder<M,R> debugLineNumbers(Appendable dest_ifNonNull) { super.debugLineNumbers(dest_ifNonNull); return this; } /** <p>Set the alterer that defines the entity, optionally modifying lines that match.</p> * @param alterer May not be {@code null} or {@linkplain com.github.xbn.analyze.alter.Alterer#mayDelete() delete}. Get with {@link com.github.xbn.linefilter.entity.raw.RawSingleLineEntity#getAlterer() getAlterer}{@code ()}*. * @return <i>{@code this}</i> */ public SingleLineEntity_CfgForNeeder<M,R> alterer(ValueAlterer<String,String> alterer) { super.alterer(alterer); return this; } /** <p>Should matched lines be kept?.</p> * @param b If {@code true}, any lines that are {@linkplain com.github.xbn.linefilter.entity.raw.RawEntity#isActive() matched}, are also {@linkplain com.github.xbn.linefilter.entity.raw.RawEntity#doKeepJustAnalyzed() kept}. Get with {@link com.github.xbn.linefilter.entity.raw.RawSingleLineEntity#doKeepMatched() doKeepMatched}{@code ()}*. * @return <i>{@code this}</i> */ public SingleLineEntity_CfgForNeeder<M,R> keepMatchedLines(boolean b) { super.keepMatchedLines(b); return this; } /** <p>Set the on-off filter.</p> * @param filter May not be {@code null}. Get with {@linkplain com.github.xbn.linefilter.entity.raw.RawLineEntity#getFilter() getFilter}{@code ()}*. * @return <i>{@code this}</i> */ public SingleLineEntity_CfgForNeeder<M,R> filter(RawOnOffEntityFilter<String> filter) { super.filter(filter); return this; } /** <p>Is it required that this entity be found somewhere in the input?.</p> * @param b If {@code true}, then this entity must exist at least once in the input. If {@code false}, it's optional. Get with {@linkplain com.github.xbn.linefilter.entity.raw.RawEntity#isRequired() isRequired}{@code ()}*. * @return <i>{@code this}</i> * @see com.github.xbn.linefilter.entity.raw.RawEntity#declareEndOfInput() */ public SingleLineEntity_CfgForNeeder<M,R> required(boolean b) { super.required(b); return this; } /** * @return <i>{@code this}</i> */ public SingleLineEntity_CfgForNeeder<M,R> chainID(boolean do_setStatic, Object id) { super.chainID(do_setStatic, id); return this; } //self-returning setters...END /** <p>Create a new {@code RawSingleLineEntity} as configured.</p> * @return <code>(M)(new xbn.text.line.RawSingleLineEntity#RawSingleLineEntity(RawSingleLineEntity_Fieldable)<O,L>(this))</code> */ public M build() { @SuppressWarnings("unchecked") M m = (M)(new SingleLineEntity(this)); return m; } /** * @return <i>{@code this}</i> */ public SingleLineEntity_CfgForNeeder<M,R> startConfigReturnNeedable(R needer) { super.startConfigReturnNeedable(needer); return this; } /** * @return <i>{@code this}</i> */ public SingleLineEntity_CfgForNeeder<M,R> startConfigReturnNeedable(R needer, Class<M> needed_class) { super.startConfigReturnNeedable(needer, needed_class); return this; } }