- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
scaladoc access
Tue, 2009-02-17, 13:43
He,
how can I tell scaladoc to include public, protected and private
elements. I already tried
"-access:public,protected,private", but unfortunately that doesn't work.
Any suggestions?
Cheers,
--
Normen Müller
Tue, 2009-02-17, 14:17
#2
Re: scaladoc access
On Feb 17, 2009, at 1:56 PM, Mark Harrah wrote:
> Try just using one at a time:
>
> -access:private
I even tried that one without any complaints, the private classes
weren't displayed, though.
Cheers,
--
Normen Müller
Tue, 2009-02-17, 14:27
#3
Re: scaladoc access
On Tue, Feb 17, 2009 at 02:06:52PM +0100, Normen Müller wrote:
> I even tried that one without any complaints, the private classes weren't
> displayed, though.
Note that there is an open bug about scaladoc and private[scope] style modifiers:
Tue, 2009-02-17, 14:37
#4
Re: scaladoc access
On Feb 17, 2009, at 2:22 PM, Paul Phillips wrote:
> Note that there is an open bug about scaladoc and private[scope]
> style modifiers:
>
> https://lampsvn.epfl.ch/trac/scala/ticket/1615
Oh, alright then. Thanks.
Cheers,
--
Normen Müller
Tue, 2009-02-17, 14:47
#5
Re: scaladoc access
On Feb 17, 2009, at 2:22 PM, Paul Phillips wrote:
> Note that there is an open bug about scaladoc and private[scope]
> style modifiers:
>
> https://lampsvn.epfl.ch/trac/scala/ticket/1615
BTW, package descriptions don't work either, right?
Cheers,
--
Normen Müller
Try just using one at a time:
-access:private
I'm pretty sure private implies protected and protected implies public.
-Mark
On Tuesday 17 February 2009, Normen Müller wrote:
> He,
>
> how can I tell scaladoc to include public, protected and private
> elements. I already tried
> "-access:public,protected,private", but unfortunately that doesn't work.
>
> Any suggestions?
>
> Cheers,
> --
> Normen Müller