001/*-------------------------------------------------------------------------+ 002| | 003| Copyright (c) 2009-2018 CQSE GmbH | 004| | 005+-------------------------------------------------------------------------*/ 006package org.conqat.lib.commons.js_export; 007 008import static java.lang.annotation.RetentionPolicy.RUNTIME; 009 010import java.lang.annotation.Retention; 011 012/** Marks fields that should not be exported to JavaScript. */ 013@Retention(RUNTIME) 014public @interface NotExported { 015 // Marker interface, so no methods needed. 016}