} else if (NativeMarkupAttributes.WML_CARD_TIMER.equals(target)) {
if (logger.isDebugEnabled()) {
logger.debug("native markup goes in wml.card.timer");
}
DeviceLayoutContext dlc = context.getDeviceLayoutContext();
buffer = dlc.getOutputBuffer(
NativeMarkupAttributes.WML_CARD_TIMER,
true);
} else if (NativeMarkupAttributes.WML_CARD_ONEVENT.equals(target)) {
if (logger.isDebugEnabled()) {
logger.debug("native markup goes in wml.card.onevent");
}
DeviceLayoutContext dlc = context.getDeviceLayoutContext();
buffer = dlc.getOutputBuffer(
NativeMarkupAttributes.WML_CARD_ONEVENT, true);
} else if (NativeMarkupAttributes.WML_CARD_BEFOREBODY.equals(target)) {
if (logger.isDebugEnabled()) {
logger.debug("native markup goes in wml.card.beforebody");
}
DeviceLayoutContext dlc = context.getDeviceLayoutContext();
buffer = dlc.getOutputBuffer(
NativeMarkupAttributes.WML_CARD_BEFOREBODY, true);
} else {
buffer = super.getNativeMarkupOutputBuffer(attributes);
}