18 lines
428 B
Java
18 lines
428 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.arsdigita.cms;
|
|
|
|
/**
|
|
*
|
|
* Content Items implementing this interface are be language invariant, if
|
|
* isLanguageInvariant returns true
|
|
*
|
|
* @author Sören Bernstein (quasimodo) <sbernstein@zes.uni-bremen.de>
|
|
*/
|
|
public interface LanguageInvariantContentItem {
|
|
|
|
public abstract boolean isLanguageInvariant();
|
|
}
|