Re: [Rd] callNextMethod() and NAMESPACE

2010-04-20 Thread Henrik Bengtsson
It could be that you define the below in two different source files and you are only updating the first and it is overwritten by the second which you never edit? /Henrik On Thu, Apr 15, 2010 at 4:21 PM, Adrian Waddell wrote: > Hello there, > > I define a accessor method for one of my classes, i.e

[Rd] callNextMethod() and NAMESPACE

2010-04-15 Thread Adrian Waddell
Hello there, I define a accessor method for one of my classes, i.e. setMethod(f = "[", signature = "NG_data", definition = function(x,i,j,drop){ if(all(is.na(match(j,x...@shortnames)) == FALSE)){ return(x[,match(j,x...@shortnames)]) }else{