Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Strange interface introduction problem

> I get the following error:
> Error   Class must implement the inherited abstract method
> CacheableProcessingComponent.getKey() Paginator.java
> cocoon-core/core/org/apache/cocoon/transformation/pagination line 88
> Error   Class must implement the inherited abstract method
> CacheableProcessingComponent.getValidity() Paginator.java
> cocoon-core/core/org/apache/cocoon/transformation/pagination line 88

It seems that there might be a name mismatch. CacheableProcessingComponent requires the methods getKey() and getValidity(), you provide generateKey() and generateValidity().
 
--Jan

Back to the top