I like the .internal. package convention (at least how Eclipse does it) but
this will not stop someone from using methods in the class through
inheritance but it makes it obvious if a class with a .internal. shows up
in an import statement. Using "Private" or "Internal" or "Impl" in the
class name is another style.

Gary


On Fri, Dec 20, 2013 at 11:53 AM, Stefan Bodewig <bode...@apache.org> wrote:

> Hi
>
> in compress' trunk we now have to different stream classes that use
> variants of LZW - the UNSHRINKING support in the zip package and the
> ZCompresorInputStream.
>
> They looked so similar (and CPD was rightfully moaning about code
> duplication) that I decided to extract the common code into
> <
> http://svn.apache.org/repos/asf/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/AbstractLZWInputStream.java
> >
>
> As the two streams live in different packages I was forced to make the
> base class public.  It also introduces protected methods to
> ZCompressorInputStream that give away more about the implementation than
> I feel comfortable with - at least if we are forced to keep it stable.
>
> I'm looking for a way to properly state "this class is public for
> technical reasons but it is not part of the public API of Compress and
> may change between releases" - same for the protected methods, if
> possible.
>
> Is it enough to say so in the javadocs?  Should I move the base class to
> yet another package with something like "internal" in its name in
> addition to the javadocs?  How much effort is "enough" to allow future
> releases breaking this part of the API?
>
> Stefan
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
>
>


-- 
E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
Java Persistence with Hibernate, Second Edition<http://www.manning.com/bauer3/>
JUnit in Action, Second Edition <http://www.manning.com/tahchiev/>
Spring Batch in Action <http://www.manning.com/templier/>
Blog: http://garygregory.wordpress.com
Home: http://garygregory.com/
Tweet! http://twitter.com/GaryGregory

Reply via email to