Skip to content

Commit

Permalink
Fix header of getObjectAnnotations to include new signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
sbesson committed May 15, 2013
1 parent edbe8a8 commit 99aa64e
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions components/tools/OmeroM/src/annotations/getObjectAnnotations.m
@@ -1,23 +1,30 @@
function annotations = getObjectAnnotations(session, annotationType, parentType, ids, varargin)
% GETOBJECTANNOTATIONS Retrieve annotations of a given type associated with an object
%
% files = getObjectAnnotations(session, annotationType, parentType, ids)
% anns = getObjectAnnotations(session, annotationType, parentType, ids)
% returns all annotations of type annotationType linked to the object of
% type parentType and identifiers ids owned by the session user.
%
% files = getObjectAnnotations(session, annotationType, parentType, ids,
% anns = getObjectAnnotations(session, annotationType, parentType,
% parents) returns all annotations of type annotationType linked to the
% input parent objects of type parentType owned by the session user.
%
% anns = getObjectAnnotations(session, annotationType, parentType, ids,
% 'include', include) only returns annotations with the input namespace.
%
% files = getObjectAnnotations(session, annotationType, parentType, ids,
% anns = getObjectAnnotations(session, annotationType, parentType, ids,
% 'exclude', exclude) excludes annotations with the input namespace.
%
% Examples:
%
% anns = getObjectAnnotations(session, annotationType, parentType, ids)
% anns = getObjectAnnotations(session, annotationType, parentType, ids,...
% 'include', include)
% anns = getObjectAnnotations(session, annotationType, parentType, ids,...
% 'exclude', exclude)
% anns = getObjectAnnotations(session, annotationType, parentType,
% ids)
% anns = getObjectAnnotations(session, annotationType, parentType,
% parents)
% anns = getObjectAnnotations(session, annotationType, parentType,
% ids, 'include', include)
% anns = getObjectAnnotations(session, annotationType, parentType,
% ids, 'exclude', exclude)
%
% See also: GETIMAGEFILEANNOTATIONS, GETIMAGETAGANNOTATIONS,
% GETIMAGECOMMENTANNOTATIONS
Expand Down

0 comments on commit 99aa64e

Please sign in to comment.