public class CreditWriter extends CreditPerson
CreditWriter
appears on a Movie
object, and describes one of
the people who is credited as a screenplay or story writer on that movie.
CreditWriter is a subclass of CreditPerson
, so all of the notes there
apply. CreditWriter extends CreditPerson
with information about the order
in which the writers are credited, for which there are
quite specific and
complex rules reflecting collaborations and level of contribution.
When you look at a Person
object, the movies that the person has
written are given as a list of ScriptWriter
objects. So ScriptWriter
is like CreditWriter
, but in the opposite direction (from a person to
a movie).
Constructor and Description |
---|
CreditWriter() |
Modifier and Type | Method and Description |
---|---|
Integer |
getGroupOrder()
Gets the second part of the order triple.
|
Integer |
getLineOrder()
Gets the first part of the order triple.
|
Integer |
getSubgroupOrder()
Gets the third part of the order triple.
|
getName, getNote, getPersonId, toString
Copyright © 2017. All rights reserved.